Fixed mysql create methods.

This commit is contained in:
Brianna 2019-04-10 23:28:45 -04:00
parent f9fea18421
commit aebb35fdc9
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ public class MySQLDatabase {
"\t`uuid` TEXT NULL,\n" +
"\t`type` TEXT NULL,\n" +
"\t`duration` BIGINT NULL,\n" +
"\t`reason` TEXT NULL\n" +
"\t`reason` TEXT NULL,\n" +
"\t`name` TEXT NULL,\n" +
"\t`creator` TEXT NULL\n" +
")");
@ -50,7 +50,7 @@ public class MySQLDatabase {
"\t`uuid` TEXT NULL,\n" +
"\t`type` TEXT NULL,\n" +
"\t`duration` BIGINT NULL,\n" +
"\t`reason` TEXT NULL\n" +
"\t`reason` TEXT NULL,\n" +
"\t`victim` TEXT NULL,\n" +
"\t`punisher` TEXT NULL,\n" +
"\t`expiration` BIGINT NULL\n" +