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',