Skip to content

Commit fffdbd6

Browse files
committed
fix typo in up.sql migration.
1 parent 5b69176 commit fffdbd6

File tree

1 file changed

+1
-1
lines changed
  • migrations/2018-06-20-062854_create_poll_table

1 file changed

+1
-1
lines changed

migrations/2018-06-20-062854_create_poll_table/up.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ CREATE TABLE poll_review_request (
1515
fk_poll INTEGER NOT NULL REFERENCES poll (id) ON DELETE CASCADE,
1616
fk_reviewer INTEGER NOT NULL REFERENCES githubuser (id),
1717
reviewed BOOLEAN NOT NULL,
18-
UNIQUE (fcp_poll, fk_reviewer)
18+
UNIQUE (fk_poll, fk_reviewer)
1919
);

0 commit comments

Comments
 (0)