From 416df6c84652cecdc37d8db09204c3c09b3cd864 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Sun, 21 Apr 2024 13:38:33 +0200 Subject: [PATCH] fix insert statement --- install/create_tables-postgres.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/create_tables-postgres.sql b/install/create_tables-postgres.sql index d010b1dd9..0a38d099c 100644 --- a/install/create_tables-postgres.sql +++ b/install/create_tables-postgres.sql @@ -824,7 +824,7 @@ INSERT INTO "tblRoles" ("id", "name", "role") VALUES (2, 'Guest', 2); SELECT nextval('"tblRoles_id_seq"'); INSERT INTO "tblRoles" ("id", "name", "role") VALUES (3, 'User', 0); SELECT nextval('"tblRoles_id_seq"'); -INSERT INTO "tblUsers" VALUES (1, 'admin', '21232f297a57a5a743894a0e4a801fc3', 'Administrator', 'info@seeddms.org', '', '', '', 1, 0, NULL, 0, 0, 0, NULL); +INSERT INTO "tblUsers" VALUES (1, 'admin', '21232f297a57a5a743894a0e4a801fc3', '', 'Administrator', 'info@seeddms.org', '', '', '', 1, 0, NULL, 0, 0, 0, NULL); SELECT nextval('"tblUsers_id_seq"'); INSERT INTO "tblUsers" VALUES (2, 'guest', NULL, '', 'Guest User', NULL, '', '', '', 2, 0, NULL, 0, 0, 0, NULL); SELECT nextval('"tblUsers_id_seq"');