Skip to content
This repository has been archived by the owner on Sep 11, 2022. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dusan Malusev committed Mar 13, 2022
1 parent 6af0678 commit 1d086da
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CREATE TABLE achievement_user(
achievement_id bigserial NOT NULL,
user_id bigserial NOT NULL,
created_at timestamp WITH TIME ZONE NOT NULL
);
achievement_id bigint NOT NULL,
user_id bigint NOT NULL,
CONSTRAINT pk_achievement_user PRIMARY KEY(achievement_id, user_id)
);

0 comments on commit 1d086da

Please sign in to comment.