new channel schema which is meant to encompass both text and voice channels

This commit is contained in:
shockrah
2020-03-11 00:39:10 -07:00
parent 558a40523e
commit 7c2e1abbc3
3 changed files with 11 additions and 0 deletions

View File

@@ -3,5 +3,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,
PRIMARY KEY(`id`)
);