Skip to content

Commit

Permalink
fix(reactionRoles): Fix emoji mix-up
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Crespi committed Dec 20, 2019
1 parent e047530 commit be5baa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/db/setup_dbx.sql
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ CREATE TABLE `reactionRoles` (
`guildId` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`messageId` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`roleId` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`emoji` varchar(255) DEFAULT NULL,
`emoji` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`createdAt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedAt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Expand Down Expand Up @@ -595,7 +595,7 @@ ALTER TABLE `punishmentConfigs`
-- AUTO_INCREMENT for table `punishments`
--
ALTER TABLE `punishments`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,;
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `scheduledActions`
--
Expand Down

0 comments on commit be5baa9

Please sign in to comment.