Skip to content

Commit

Permalink
fixes to false positive structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Szer committed Jul 20, 2024
1 parent 7682298 commit 1f03f39
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/migrations/V7__false-banned-2.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
DROP TABLE false_positive_users;
CREATE TABLE false_positive_users
(
user_id BIGINT PRIMARY KEY
REFERENCES banned (banned_user_id) ON DELETE CASCADE
);

DROP TABLE false_positive_messages;
CREATE TABLE false_positive_messages
(
id BIGINT PRIMARY KEY
REFERENCES banned (id) ON DELETE CASCADE
);

0 comments on commit 1f03f39

Please sign in to comment.