From 9e6f32e36ed796846114e45b8ec5b38608a23713 Mon Sep 17 00:00:00 2001 From: shockrah Date: Wed, 3 Jun 2020 00:02:22 -0700 Subject: [PATCH] Description field is now optional as not all channels will need one --- server/migrations/2020-03-11-005217_channels/up.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/migrations/2020-03-11-005217_channels/up.sql b/server/migrations/2020-03-11-005217_channels/up.sql index ed14025..7ab7cce 100644 --- a/server/migrations/2020-03-11-005217_channels/up.sql +++ b/server/migrations/2020-03-11-005217_channels/up.sql @@ -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`) ); \ No newline at end of file