change in column name of ttag

This commit is contained in:
Daniel Maya 2021-01-15 09:50:40 +01:00
parent 5a837c9aaa
commit ca17e9cfcb
3 changed files with 4 additions and 1 deletions

View File

@ -133,4 +133,6 @@ ADD COLUMN `field16` TEXT NOT NULL AFTER `field15`
ALTER TABLE `trecon_task` MODIFY COLUMN `review_mode` TINYINT(1) UNSIGNED DEFAULT 1;
ALTER TABLE `ttag` MODIFY COLUMN `name` text NOT NULL default '';
COMMIT;

View File

@ -1402,6 +1402,7 @@ ALTER TABLE `tmap` MODIFY COLUMN `id_user` varchar(250) NOT NULL DEFAULT '';
-- Table `ttag`
-- ---------------------------------------------------------------------
ALTER TABLE `ttag` ADD COLUMN `previous_name` text NULL;
ALTER TABLE `ttag` MODIFY COLUMN `name` text NOT NULL default '';
-- ---------------------------------------------------------------------
-- Table `tconfig`

View File

@ -2070,7 +2070,7 @@ CREATE TABLE IF NOT EXISTS `tagent_custom_data` (
-- ----------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS `ttag` (
`id_tag` integer(10) unsigned NOT NULL auto_increment,
`name` varchar(100) NOT NULL default '',
`name` text NOT NULL default '',
`description` text NOT NULL,
`url` mediumtext NOT NULL,
`email` text NULL,