Bug in postgres schema.

This commit is contained in:
Travis Reeder
2016-08-30 01:24:39 -07:00
parent 0067a27aa9
commit 662216f7f1

View File

@@ -22,8 +22,8 @@ CREATE TABLE IF NOT EXISTS routes (
);`
const appsTableCreate = `CREATE TABLE IF NOT EXISTS apps (
name character varying(256) NOT NULL PRIMARY KEY
config text NOT NULL,
name character varying(256) NOT NULL PRIMARY KEY,
config text NOT NULL
);`
const extrasTableCreate = `CREATE TABLE IF NOT EXISTS extras (