diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index f3c32bd806..b7cb9f0acc 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -1553,7 +1553,7 @@ ALTER TABLE `tagente_modulo` DROP COLUMN `ff_normal`, MODIFY COLUMN `dynamic_next` bigint(20) NOT NULL DEFAULT '0', MODIFY COLUMN `dynamic_two_tailed` tinyint(1) unsigned NULL DEFAULT '0'; ALTER TABLE tagente_modulo MODIFY COLUMN `custom_string_1` MEDIUMTEXT; -ALTER TABLE `tagente_modulo` ADD COLUMN `debug_content` varchar(200); +ALTER TABLE `tagente_modulo` ADD COLUMN `debug_content` TEXT; -- --------------------------------------------------------------------- -- Table `tagente_datos` diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index daa3c98746..eb8db09876 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -266,7 +266,7 @@ CREATE TABLE IF NOT EXISTS `tagente_modulo` ( `prediction_threshold` int(4) default 0, `parent_module_id` int(10) unsigned NOT NULL default 0, `cps` int NOT NULL default 0, - `debug_content` varchar(200), + `debug_content` TEXT, PRIMARY KEY (`id_agente_modulo`), KEY `main_idx` (`id_agente_modulo`,`id_agente`), KEY `tam_agente` (`id_agente`),