Merge branch 'testing' into master

This commit is contained in:
shockrah
2020-08-22 15:58:13 -07:00
22 changed files with 545 additions and 523 deletions

View File

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