Skip to content

Commit

Permalink
Remove quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
k3ypusher committed Dec 26, 2024
1 parent 119cab4 commit 55d0acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CREATE TABLE `user` (
`userId` int(11) NOT NULL AUTO_INCREMENT,
`nickname` varchar(45) NOT NULL,
`isAdminIndicator` tinyint(1) NOT NULL DEFAULT '0',
`isAdminIndicator` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`userId`),
UNIQUE KEY `userId_UNIQUE` (`userId`),
UNIQUE KEY `nickname_UNIQUE` (`nickname`)
Expand Down

0 comments on commit 55d0acc

Please sign in to comment.