Added field to tevent_filter (id_source_event)

This commit is contained in:
marcos.alconada 2019-06-21 11:29:51 +02:00
parent a0c6dc69aa
commit 1dc826c9ff
3 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,5 @@
START TRANSACTION;
ALTER TABLE tevent_filter ADD column id_source_event int(10);
COMMIT;

View File

@ -1277,6 +1277,7 @@ ALTER TABLE tevent_filter ADD COLUMN `date_to` date DEFAULT NULL;
ALTER TABLE tevent_filter ADD COLUMN `user_comment` text NOT NULL; ALTER TABLE tevent_filter ADD COLUMN `user_comment` text NOT NULL;
ALTER TABLE tevent_filter ADD COLUMN `source` tinytext NOT NULL; ALTER TABLE tevent_filter ADD COLUMN `source` tinytext NOT NULL;
ALTER TABLE tevent_filter ADD COLUMN `id_extra` tinytext NOT NULL; ALTER TABLE tevent_filter ADD COLUMN `id_extra` tinytext NOT NULL;
ALTER TABLE tevent_filter ADD column id_source_event int(10);
-- --------------------------------------------------------------------- -- ---------------------------------------------------------------------
-- Table `tusuario` -- Table `tusuario`
-- --------------------------------------------------------------------- -- ---------------------------------------------------------------------

View File

@ -1101,6 +1101,7 @@ CREATE TABLE IF NOT EXISTS `tevent_filter` (
`source` tinytext NOT NULL, `source` tinytext NOT NULL,
`id_extra` tinytext NOT NULL, `id_extra` tinytext NOT NULL,
`user_comment` text NOT NULL, `user_comment` text NOT NULL,
`id_source_event` int(10) default NULL,
PRIMARY KEY (`id_filter`) PRIMARY KEY (`id_filter`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;