Updated target for debugger

 Tests now use the new flags required for /channels/create
 Doubled size for channel descriptions
This commit is contained in:
shockrah
2021-03-07 17:46:17 -08:00
parent fadc7d6dc1
commit 7c3537e4f6
4 changed files with 37 additions and 39 deletions

View File

@@ -2,7 +2,7 @@
CREATE TABLE IF NOT EXISTS `channels` (
`id` BIGINT UNSIGNED NOT NULL auto_increment,
`name` VARCHAR(255) NOT NULL,
`description` VARCHAR(1024),
`description` VARCHAR(2048),
`kind` INTEGER NOT NULL,
PRIMARY KEY(`id`), UNIQUE KEY(`name`)
);