mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
add changes bbdd
This commit is contained in:
parent
deb2657353
commit
0213bc675e
@ -8,4 +8,8 @@ INSERT INTO `ttipo_modulo` VALUES
|
|||||||
(36,'remote_cmd_string', 10, 'Remote execution, alphanumeric data', 'mod_remote_cmd_string.png'),
|
(36,'remote_cmd_string', 10, 'Remote execution, alphanumeric data', 'mod_remote_cmd_string.png'),
|
||||||
(37,'remote_cmd_inc', 10, 'Remote execution, incremental data', 'mod_remote_cmd_inc.png');
|
(37,'remote_cmd_inc', 10, 'Remote execution, incremental data', 'mod_remote_cmd_inc.png');
|
||||||
|
|
||||||
|
ALTER TABLE `tevent_rule` ADD COLUMN `log_content` TEXT;
|
||||||
|
ALTER TABLE `tevent_rule` ADD COLUMN `log_source` TEXT;
|
||||||
|
ALTER TABLE `tevent_rule` ADD COLUMN `log_agent` TEXT;
|
||||||
|
|
||||||
COMMIT;
|
COMMIT;
|
||||||
|
@ -564,6 +564,9 @@ CREATE TABLE IF NOT EXISTS `tevent_rule` (
|
|||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
ALTER TABLE `tevent_rule` ADD COLUMN `group_recursion` INT(1) unsigned default 0;
|
ALTER TABLE `tevent_rule` ADD COLUMN `group_recursion` INT(1) unsigned default 0;
|
||||||
|
ALTER TABLE `tevent_rule` ADD COLUMN `log_content` TEXT;
|
||||||
|
ALTER TABLE `tevent_rule` ADD COLUMN `log_source` TEXT;
|
||||||
|
ALTER TABLE `tevent_rule` ADD COLUMN `log_agent` TEXT;
|
||||||
|
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
-- Table `tevent_alert`
|
-- Table `tevent_alert`
|
||||||
|
@ -2782,6 +2782,9 @@ CREATE TABLE IF NOT EXISTS `tevent_rule` (
|
|||||||
`id_tag` integer(10) unsigned NOT NULL default '0',
|
`id_tag` integer(10) unsigned NOT NULL default '0',
|
||||||
`name` text default '',
|
`name` text default '',
|
||||||
`group_recursion` INT(1) unsigned default 0,
|
`group_recursion` INT(1) unsigned default 0,
|
||||||
|
`log_content` text,
|
||||||
|
`log_source` text,
|
||||||
|
`log_agent` text,
|
||||||
PRIMARY KEY (`id_event_rule`),
|
PRIMARY KEY (`id_event_rule`),
|
||||||
KEY `idx_id_event_alert` (`id_event_alert`)
|
KEY `idx_id_event_alert` (`id_event_alert`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user