Skip to content

Commit

Permalink
Changed awardType to awardCategory in DatabaseActivity.cs when creati…
Browse files Browse the repository at this point in the history
…ng the awards table
  • Loading branch information
MythicalCuddles committed Jan 18, 2020
1 parent a03ab6a commit f45e35d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DiscordBot/Database/DatabaseActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ private static void CreateTablesIfNotExists()
ExecuteNonQueryCommand("CREATE TABLE IF NOT EXISTS `awards` (" +
"`awardID` INT NOT NULL AUTO_INCREMENT, " +
"`userID` bigint(20) UNSIGNED NOT NULL, " +
"`awardCategory` text COLLATE utf8mb4_unicode_ci NOT NULL, " +
"`awardText` text COLLATE utf8mb4_unicode_ci NOT NULL, " +
"`awardType` text COLLATE utf8mb4_unicode_ci NOT NULL, " +
"`dateAwarded` date NOT NULL," +
"PRIMARY KEY (awardId)" +
") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci;");
Expand Down

0 comments on commit f45e35d

Please sign in to comment.