mirror of
https://github.com/songoda/UltimateStacker.git
synced 2025-01-12 18:50:49 +01:00
database fix
This commit is contained in:
parent
b02f04561b
commit
7f8b22c4c5
@ -31,12 +31,12 @@ public class MySQLDatabase {
|
||||
try {
|
||||
connection.createStatement().execute("CREATE TABLE IF NOT EXISTS `" + instance.getConfig().getString("Database.Prefix") + "entities` (\n" +
|
||||
"\t`uuid` TEXT NULL,\n" +
|
||||
"\t`amount` INT NULL,\n" +
|
||||
"\t`amount` INT NULL\n" +
|
||||
")");
|
||||
|
||||
connection.createStatement().execute("CREATE TABLE IF NOT EXISTS `" + instance.getConfig().getString("Database.Prefix") + "spawners` (\n" +
|
||||
"\t`location` TEXT NULL,\n" +
|
||||
"\t`amount` INT NULL,\n" +
|
||||
"\t`amount` INT NULL\n" +
|
||||
")");
|
||||
|
||||
} catch (SQLException e) {
|
||||
|
Loading…
Reference in New Issue
Block a user