Skip to content
Snippets Groups Projects
Commit 47a2dbad authored by Giovannoni Laurent's avatar Giovannoni Laurent
Browse files

FEAT #1432 pb with sequence

parent 955386d7
No related branches found
No related tags found
No related merge requests found
......@@ -158,6 +158,7 @@ CREATE TABLE actions_categories
-- RELATION BETWEEN USERS AND BASKETS OF SECONDARY PROFILES --
-- ************************************************************************* --
DROP TABLE IF EXISTS user_baskets_secondary;
DROP SEQUENCE IF EXISTS user_baskets_secondary_seq;
CREATE SEQUENCE user_baskets_secondary_seq
INCREMENT 1
......@@ -166,7 +167,6 @@ MAXVALUE 9223372036854775807
START 1
CACHE 1;
DROP TABLE IF EXISTS user_baskets_secondary;
CREATE TABLE user_baskets_secondary
(
system_id bigint NOT NULL DEFAULT nextval('user_baskets_secondary_seq'::regclass),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment