Tolerate missing role in user creation

This commit is contained in:
calebmer
2015-10-07 20:01:46 -04:00
parent 2f551fea97
commit 8e107e5b24
6 changed files with 36 additions and 16 deletions
+1 -1
View File
@@ -372,7 +372,7 @@ SET search_path = postgrest, pg_catalog;
CREATE TABLE auth (
id character varying NOT NULL,
rolname name NOT NULL,
rolname name NOT NULL DEFAULT 'postgrest_test_author',
pass character(60) NOT NULL
);