WIP Command center

This commit is contained in:
Daniel Barbero Martin 2021-03-08 12:20:32 +01:00
parent b57be5535d
commit 6c3cb2c61c
3 changed files with 10 additions and 2 deletions

View File

@ -0,0 +1,5 @@
START TRANSACTION;
ALTER TABLE `tmetaconsole_setup` ADD COLUMN `info_merge` MEDIUMTEXT NOT NULL DEFAULT '';
COMMIT;

View File

@ -3987,3 +3987,5 @@ DELETE FROM `tconfig` WHERE `token` = 'ipam_installed';
DELETE FROM `tconfig` WHERE `token` = 'ipam_recon_script_id'; DELETE FROM `tconfig` WHERE `token` = 'ipam_recon_script_id';
ALTER TABLE `tmetaconsole_setup` ADD COLUMN `info_merge` MEDIUMTEXT NOT NULL DEFAULT '';

View File

@ -2727,6 +2727,7 @@ CREATE TABLE IF NOT EXISTS `tmetaconsole_setup` (
`disabled` tinyint(1) unsigned NOT NULL default '0', `disabled` tinyint(1) unsigned NOT NULL default '0',
`last_event_replication` bigint(20) default '0', `last_event_replication` bigint(20) default '0',
`server_uid` text NOT NULL default '', `server_uid` text NOT NULL default '',
`info_merge` MEDIUMTEXT NOT NULL DEFAULT '',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB ) ENGINE=InnoDB
COMMENT = 'Table to store metaconsole sources' COMMENT = 'Table to store metaconsole sources'