Revert change on MR

This commit is contained in:
Félix Suárez 2023-06-05 09:30:05 -06:00
parent 6aa082d54c
commit e1ab58a26c
1 changed files with 12 additions and 1 deletions

View File

@ -1,5 +1,16 @@
START TRANSACTION;
CREATE TABLE IF NOT EXISTS `tnetwork_matrix` (
`id` int(10) unsigned NOT NULL auto_increment,
`source` varchar(60) default '',
`destination` varchar(60) default '',
`utimestamp` bigint(20) default 0,
`bytes` int(18) unsigned default 0,
`pkts` int(18) unsigned default 0,
PRIMARY KEY (`id`),
UNIQUE (`source`, `destination`, `utimestamp`)
) ENGINE = InnoDB DEFAULT CHARSET=utf8 ;
ALTER TABLE `treport_content` ADD COLUMN `show_extended_events` tinyint(1) default '0';
UPDATE `treport_content` SET type="netflow_summary" WHERE type="netflow_pie" OR type="netflow_statistics";
@ -10,4 +21,4 @@ ALTER TABLE tagent_custom_fields ADD COLUMN `combo_values` VARCHAR(255) DEFAULT
ALTER TABLE `trecon_task` ADD COLUMN `summary` text;
COMMIT;
COMMIT;