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
parent
eaa239eb06
commit
6a75b7c65e
|
@ -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
|
||||
-- ----------------------------
|
||||
|
|
Loading…
Reference in New Issue