Skip to content

Commit 819c779

Browse files
committed
スキーマ修正
1 parent 579792c commit 819c779

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/resources/database/mysql_schema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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;

src/main/resources/database/sqlite_schema.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CREATE TABLE IF NOT EXISTS `%players_table%`
1+
CREATE TABLE IF NOT EXISTS `%user_data%`
22
(
33
`uuid` char(36) NOT NULL UNIQUE,
44
`username` varchar(16) NOT NULL,
@@ -14,7 +14,7 @@ CREATE TABLE IF NOT EXISTS `%players_table%`
1414
PRIMARY KEY (`uuid`)
1515
);
1616

17-
CREATE TABLE IF NOT EXISTS `%pit_preferences%`
17+
CREATE TABLE IF NOT EXISTS `%pit_data%`
1818
(
1919
`id` integer NOT NULL PRIMARY KEY AUTOINCREMENT,
2020
`preferences` longblob NOT NULL

0 commit comments

Comments
 (0)