Fixed little issues

This commit is contained in:
Jose Gonzalez 2020-08-07 13:29:09 +02:00
parent a1bd93bac7
commit c67d8bd005
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,5 @@
ALTER TABLE `talert_templates` ADD COLUMN `previous_name` text;
ALTER TABLE `talert_actions` ADD COLUMN `previous_name` text;
ALTER TABLE `talert_commands` ADD COLUMN `previous_name` text;
ALTER TABLE `ttag` ADD COLUMN `previous_name` text default '';
ALTER TABLE `tconfig_os` ADD COLUMN `previous_name` text default '';

View File

@ -2042,9 +2042,10 @@ CREATE TABLE IF NOT EXISTS `ttag` (
`id_tag` integer(10) unsigned NOT NULL auto_increment,
`name` varchar(100) NOT NULL default '',
`description` text NOT NULL,
`url` mediumtext NOT NULL,
`url` mediumtext NOT NULL,
`email` text NULL,
`phone` text NULL,
`previous_name` text default '',
PRIMARY KEY (`id_tag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;