We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 579792c commit 819c779Copy full SHA for 819c779
2 files changed
src/main/resources/database/mysql_schema.sql
@@ -26,4 +26,4 @@ CREATE TABLE IF NOT EXISTS `%pit_data%`
26
`id` int NOT NULL AUTO_INCREMENT PRIMARY KEY,
27
`preferences` longblob NOT NULL
28
) CHARACTER SET utf8
29
- COLLATE utf8_unicode_ci;
+ COLLATE utf8_unicode_ci;
src/main/resources/database/sqlite_schema.sql
@@ -1,4 +1,4 @@
1
-CREATE TABLE IF NOT EXISTS `%players_table%`
+CREATE TABLE IF NOT EXISTS `%user_data%`
2
(
3
`uuid` char(36) NOT NULL UNIQUE,
4
`username` varchar(16) NOT NULL,
@@ -14,7 +14,7 @@ CREATE TABLE IF NOT EXISTS `%players_table%`
14
PRIMARY KEY (`uuid`)
15
);
16
17
-CREATE TABLE IF NOT EXISTS `%pit_preferences%`
+CREATE TABLE IF NOT EXISTS `%pit_data%`
18
19
`id` integer NOT NULL PRIMARY KEY AUTOINCREMENT,
20
0 commit comments