Skip to content

Commit

Permalink
fix(ranks): Use text instead of varchar
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Crespi committed Dec 10, 2019
1 parent 5371ffc commit 2aa0e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/db/setup_dbx.sql
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ CREATE TABLE `punishments` (

CREATE TABLE `ranks` (
`numInvites` int(11) DEFAULT NULL,
`description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`createdAt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedAt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`guildId` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
Expand Down

0 comments on commit 2aa0e1c

Please sign in to comment.