Skip to content

Commit 3da00c7

Browse files
committed
fix SQL syntax
1 parent da56f6a commit 3da00c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/resources/database/mysql_schema.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ CREATE TABLE IF NOT EXISTS `%user_data%`
1616
`rating` integer NOT NULL DEFAULT 0,
1717
`bestRating` integer NOT NULL DEFAULT 0,
1818
`xp` integer NOT NULL DEFAULT 0,
19-
`preferences` longblob NOT NULL,
19+
`preferences` longblob NOT NULL
2020
) CHARACTER SET utf8
2121
COLLATE utf8_unicode_ci;
2222

@@ -26,4 +26,4 @@ CREATE TABLE IF NOT EXISTS `%pit_data%`
2626
`id` int NOT NULL AUTO_INCREMENT PRIMARY KEY,
2727
`preferences` longblob NOT NULL
2828
) CHARACTER SET utf8
29-
COLLATE utf8_unicode_ci;
29+
COLLATE utf8_unicode_ci;

0 commit comments

Comments
 (0)