Increase WUX tests field size in database

This commit is contained in:
Kike 2020-03-20 14:09:06 +01:00
parent 9211396134
commit 037564810b
3 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,5 @@
START TRANSACTION;
ALTER TABLE tagente_modulo MODIFY COLUMN `custom_string_1` MEDIUMTEXT;
COMMIT;

View File

@ -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`

View File

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