From 91549b5a7c23e9884cb805dda9f054aed11a3160 Mon Sep 17 00:00:00 2001 From: ramonn Date: Mon, 20 Jan 2014 14:45:17 +0000 Subject: [PATCH] 2014-01-20 Ramon Novoa * pandoradb.sql: Changed the type of tnetwork_component.description to TEXT. Fixes ticket #487. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9346 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/pandoradb.sql | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 66f2c8489b..5bcf006349 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2014-01-20 Ramon Novoa + + * pandoradb.sql: Changed the type of tnetwork_component.description to + TEXT. Fixes ticket #487. + 2014-01-20 Miguel de Dios * mobile/include/user.class.php, diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 2c07a463af..e1390e74c7 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -611,7 +611,7 @@ CREATE TABLE IF NOT EXISTS `tmodule_group` ( CREATE TABLE IF NOT EXISTS `tnetwork_component` ( `id_nc` int(10) unsigned NOT NULL auto_increment, `name` text NOT NULL, - `description` varchar(250) default NULL, + `description` TEXT NOT NULL, `id_group` int(6) NOT NULL default '1', `type` smallint(6) NOT NULL default '6', `max` bigint(20) NOT NULL default '0',