Fix mr pandoradb migrate
This commit is contained in:
parent
9c290d917e
commit
ea747f25f3
|
@ -1524,6 +1524,8 @@ ALTER TABLE tevent_filter ADD COLUMN `id_source_event` int(10);
|
||||||
ALTER TABLE `tevent_filter` MODIFY COLUMN `user_comment` text NOT NULL;
|
ALTER TABLE `tevent_filter` MODIFY COLUMN `user_comment` text NOT NULL;
|
||||||
ALTER TABLE `tevent_filter` MODIFY COLUMN `severity` text NOT NULL;
|
ALTER TABLE `tevent_filter` MODIFY COLUMN `severity` text NOT NULL;
|
||||||
ALTER TABLE tevent_filter ADD COLUMN `server_id` int(10) NOT NULL default 0;
|
ALTER TABLE tevent_filter ADD COLUMN `server_id` int(10) NOT NULL default 0;
|
||||||
|
ALTER TABLE `tevent_filter` ADD COLUMN `time_from` TIME NULL;
|
||||||
|
ALTER TABLE `tevent_filter` ADD COLUMN `time_to` TIME NULL;
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
-- Table `tusuario`
|
-- Table `tusuario`
|
||||||
|
|
|
@ -1232,6 +1232,8 @@ CREATE TABLE IF NOT EXISTS `tevent_filter` (
|
||||||
`user_comment` text NOT NULL,
|
`user_comment` text NOT NULL,
|
||||||
`id_source_event` int(10) NULL default 0,
|
`id_source_event` int(10) NULL default 0,
|
||||||
`server_id` int(10) NOT NULL default 0,
|
`server_id` int(10) NOT NULL default 0,
|
||||||
|
`time_from` TIME NULL,
|
||||||
|
`time_to` TIME NULL,
|
||||||
PRIMARY KEY (`id_filter`)
|
PRIMARY KEY (`id_filter`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue