Skip to content

Commit

Permalink
Missing sequence in SQL update file (#7707)
Browse files Browse the repository at this point in the history
  • Loading branch information
gianlucagiacometti committed Nov 6, 2020
1 parent 8439f37 commit 53f6e31
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions SQL/postgres/2020091000.sql
@@ -1,3 +1,10 @@
CREATE SEQUENCE collected_addresses_seq
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;

CREATE TABLE collected_addresses (
address_id integer DEFAULT nextval('collected_addresses_seq'::text) PRIMARY KEY,
user_id integer NOT NULL
Expand Down

0 comments on commit 53f6e31

Please sign in to comment.