From aebb35fdc9bd082baebe6bf62f1b564cdeb91498 Mon Sep 17 00:00:00 2001 From: Brianna Date: Wed, 10 Apr 2019 23:28:45 -0400 Subject: [PATCH] Fixed mysql create methods. --- .../com/songoda/ultimatemoderation/utils/MySQLDatabase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/songoda/ultimatemoderation/utils/MySQLDatabase.java b/src/main/java/com/songoda/ultimatemoderation/utils/MySQLDatabase.java index b1f3c42..5fa2193 100644 --- a/src/main/java/com/songoda/ultimatemoderation/utils/MySQLDatabase.java +++ b/src/main/java/com/songoda/ultimatemoderation/utils/MySQLDatabase.java @@ -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" +