Skip to content

Commit cd230f8

Browse files
committed
fix syntax error in up.sql migration.
1 parent 60ae53f commit cd230f8

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
@@ -5,7 +5,7 @@ CREATE TABLE poll (
55
fk_initiating_comment INTEGER NOT NULL REFERENCES issuecomment (id),
66
fk_bot_tracking_comment INTEGER NOT NULL REFERENCES issuecomment (id),
77
poll_question VARCHAR NOT NULL,
8-
poll_created_at TIMESTAMP, NOT NULL,
8+
poll_created_at TIMESTAMP NOT NULL,
99
poll_closed BOOLEAN NOT NULL,
1010
poll_teams VARCHAR NOT NULL
1111
);

0 commit comments

Comments
 (0)