Table creation fix.

This commit is contained in:
Brianna O'Keefe 2019-01-14 19:47:53 -05:00
parent 613728382f
commit 1a9e606ab5

View File

@ -22,7 +22,7 @@ public class MySQLDatabase {
//ToDo: This is sloppy
connection.createStatement().execute(
"CREATE TABLE IF NOT EXISTS `" + instance.getConfig().getString("Database.Prefix") + "link` (\n" +
"CREATE TABLE IF NOT EXISTS `" + instance.getConfig().getString("Database.Prefix") + "sync` (\n" +
"\t`location` TEXT NULL,\n" +
"\t`level` INT NULL,\n" +
"\t`block` TEXT NULL,\n" +