removed perms and limit on channels until channels module is done

This commit is contained in:
shockrah 2020-06-02 22:01:21 -07:00
parent d2eb0597c3
commit 528d7502d1

View File

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