From: simonraven Date: Wed, 31 Oct 2007 22:02:50 +0000 (+0000) Subject: fix mysql/news.sql to have varchar(30) like the rest of the DB types, and the other... X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8a1456bd79cbeb2304e1d529f53f510ff1c8da76;p=infobot.git fix mysql/news.sql to have varchar(30) like the rest of the DB types, and the other tables git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@1605 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/setup/mysql/news.sql b/setup/mysql/news.sql index e2231f8..4f14da6 100644 --- a/setup/mysql/news.sql +++ b/setup/mysql/news.sql @@ -1,5 +1,5 @@ CREATE TABLE `news` ( - `channel` VARCHAR(16) NOT NULL, + `channel` VARCHAR(30) NOT NULL, `id` INT UNSIGNED DEFAULT '0', `key` VARCHAR(16) NOT NULL, `value` TEXT NOT NULL,