diff --git a/pandora_console/extras/mr/37.sql b/pandora_console/extras/mr/37.sql new file mode 100644 index 0000000000..a8591fe511 --- /dev/null +++ b/pandora_console/extras/mr/37.sql @@ -0,0 +1,5 @@ +START TRANSACTION; + +ALTER TABLE tagente_modulo MODIFY COLUMN `custom_string_1` MEDIUMTEXT; + +COMMIT; \ No newline at end of file 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 d9fe58ee64..52a9eaa217 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 @@ -1444,6 +1444,7 @@ ALTER TABLE `tagente_modulo` DROP COLUMN `ff_normal`, MODIFY COLUMN `ff_type` tinyint(1) unsigned NULL DEFAULT '0', 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; -- --------------------------------------------------------------------- -- Table `tagente_datos` diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index e07fc5f6ad..08de8ed8ad 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -233,7 +233,7 @@ CREATE TABLE IF NOT EXISTS `tagente_modulo` ( `delete_pending` int(1) unsigned default 0, `policy_linked` tinyint(1) unsigned not null default 0, `policy_adopted` tinyint(1) unsigned not null default 0, - `custom_string_1` text, + `custom_string_1` mediumtext, `custom_string_2` text, `custom_string_3` text, `custom_integer_1` int(10) default 0,