PGSQL EstateStore create estate_settings_id SEQUENCE

Missing creation for estate_settings_id sequence causes first run
to fail unless manually added.

Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
0.9.0.1-postfixes
TomTheDragon 2017-11-11 19:44:17 -05:00 committed by UbitUmarov
parent eaa239eb06
commit 6a75b7c65e
1 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,16 @@
BEGIN TRANSACTION;
-- ----------------------------
-- SEQUENCE estate_settings_id
-- ----------------------------
CREATE SEQUENCE IF NOT EXISTS "public"."estate_settings_id"
INCREMENT 100
MINVALUE 1
MAXVALUE 9223372036854775807
START 100
CACHE 1;
-- ----------------------------
-- Table structure for estate_groups
-- ----------------------------