#12138 Fix SQL code
This commit is contained in:
parent
62901b6a70
commit
0337afcdaf
|
@ -11,7 +11,7 @@ UPDATE talert_actions
|
|||
SET field2='[PANDORA] Alert FIRED on _agent_ / _module_ / _timestamp_ / _data_'
|
||||
WHERE id=11;
|
||||
-- Delete table tagent_access
|
||||
DROP TABLE tagent_access;
|
||||
DROP TABLE IF EXISTS tagent_access;
|
||||
|
||||
ALTER TABLE `tevent_rule` DROP COLUMN `user_comment`;
|
||||
ALTER TABLE `tevent_rule` DROP COLUMN `operator_user_comment`;
|
||||
|
|
|
@ -290,16 +290,6 @@ CREATE TABLE IF NOT EXISTS `tagente_modulo` (
|
|||
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
|
||||
-- snmp_oid is also used for WMI query
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table `tagent_access`
|
||||
-- -----------------------------------------------------
|
||||
-- CREATE TABLE IF NOT EXISTS `tagent_access` (
|
||||
-- `id_agent` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
-- `utimestamp` BIGINT NOT NULL DEFAULT 0,
|
||||
-- KEY `agent_index` (`id_agent`),
|
||||
-- KEY `idx_utimestamp` USING BTREE (`utimestamp`)
|
||||
-- ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table `talert_snmp`
|
||||
-- -----------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue