Skip to content

Commit

Permalink
Fix DDL script
Browse files Browse the repository at this point in the history
  • Loading branch information
kifj committed Apr 27, 2024
1 parent 1df2c8d commit b3a7dc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion etc/create-postgresql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CREATE TABLE stocks.share (
name character varying(80) NOT NULL,
version bigint,
CONSTRAINT share_pkey PRIMARY KEY (id),
CONSTRAINT idx_key UNIQUE (key);
CONSTRAINT idx_key UNIQUE (key)
);

CREATE SEQUENCE stocks.share_seq INCREMENT BY 50;
Expand Down
2 changes: 1 addition & 1 deletion src/main/docker/x1-postgres-stomp-test/sql/ddl.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CREATE TABLE stocks.share (
name character varying(80) NOT NULL,
version bigint,
CONSTRAINT share_pkey PRIMARY KEY (id),
CONSTRAINT idx_key UNIQUE (key);
CONSTRAINT idx_key UNIQUE (key)
);

CREATE SEQUENCE stocks.share_seq INCREMENT BY 50;
Expand Down

0 comments on commit b3a7dc8

Please sign in to comment.