Skip to content

Commit

Permalink
Update V4__add_column_review.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
bayy1216 authored Sep 26, 2024
1 parent b1f534d commit 50b9db7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ALTER TABLE challenge_review ADD COLUMN difficulty TINYINT DEFULT(1) NOT NULL;
ALTER TABLE challenge_review ADD COLUMN achievement TINYINT DEFULT(1) NOT NULL;
ALTER TABLE challenge_review ADD COLUMN difficulty TINYINT DEFAULT(1) NOT NULL;
ALTER TABLE challenge_review ADD COLUMN achievement TINYINT DEFAULT(1) NOT NULL;

ALTER TABLE challenge_review ALTER COLUMN difficulty DROP DEFAULT;
ALTER TABLE challenge_review ALTER COLUMN achievement DROP DEFAULT;
ALTER TABLE challenge_review ALTER COLUMN achievement DROP DEFAULT;

0 comments on commit 50b9db7

Please sign in to comment.