From 662216f7f1643e576dc03dcf7a8bf41c48234870 Mon Sep 17 00:00:00 2001 From: Travis Reeder Date: Tue, 30 Aug 2016 01:24:39 -0700 Subject: [PATCH] Bug in postgres schema. --- api/datastore/postgres/postgres.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/datastore/postgres/postgres.go b/api/datastore/postgres/postgres.go index babc0d302..b33d021c3 100644 --- a/api/datastore/postgres/postgres.go +++ b/api/datastore/postgres/postgres.go @@ -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 (