WIP Command center
This commit is contained in:
parent
b57be5535d
commit
6c3cb2c61c
|
@ -0,0 +1,5 @@
|
||||||
|
START TRANSACTION;
|
||||||
|
|
||||||
|
ALTER TABLE `tmetaconsole_setup` ADD COLUMN `info_merge` MEDIUMTEXT NOT NULL DEFAULT '';
|
||||||
|
|
||||||
|
COMMIT;
|
|
@ -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 '';
|
||||||
|
|
||||||
|
|
|
@ -2727,9 +2727,10 @@ 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'
|
||||||
DEFAULT CHARSET=utf8;
|
DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue