added missed new field extended_info for events

Former-commit-id: 8edb7cb854364259ffca27585e423464d213137a
This commit is contained in:
fbsanchez 2019-02-08 17:30:13 +01:00
parent 7077d5d1ef
commit a3a1bbb778
2 changed files with 3 additions and 0 deletions

View File

@ -1856,6 +1856,8 @@ ALTER TABLE `tevento` ADD COLUMN `data` double(22,5) default NULL;
ALTER TABLE `tevento` ADD COLUMN `module_status` int(4) NOT NULL default '0';
ALTER TABLE `tevento` ADD COLUMN `extended_info` tinyint(1) NOT NULL default '0';
-- ---------------------------------------------------------------------
-- Table `tevent_extended`
-- ---------------------------------------------------------------------

View File

@ -644,6 +644,7 @@ CREATE TABLE IF NOT EXISTS `tevento` (
`custom_data` TEXT NOT NULL,
`data` double(22,5) default NULL,
`module_status` int(4) NOT NULL default '0',
`extended_info` tinyint(1) NOT NULL default '0'
PRIMARY KEY (`id_evento`),
KEY `idx_agente` (`id_agente`),
KEY `idx_agentmodule` (`id_agentmodule`),