Description field is now optional as not all channels will need one

This commit is contained in:
shockrah 2020-06-03 00:02:22 -07:00
parent 8d149014e1
commit 9e6f32e36e

View File

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