switched the order fields to match what rust typles expect

This commit is contained in:
shockrah 2020-06-03 01:20:12 -07:00
parent 50962598e5
commit 17a23d41f5

View File

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