8 lines
346 B
MySQL
8 lines
346 B
MySQL
|
START TRANSACTION;
|
||
|
|
||
|
ALTER TABLE `tevent_alert` ADD COLUMN `id_template_conditions` int(10) unsigned NOT NULL default 0;
|
||
|
ALTER TABLE `tevent_alert` ADD COLUMN `id_template_fields` int(10) unsigned NOT NULL default 0;
|
||
|
ALTER TABLE `tevent_filter` ADD COLUMN `time_from` TIME NULL;
|
||
|
ALTER TABLE `tevent_filter` ADD COLUMN `time_to` TIME NULL;
|
||
|
|
||
|
COMMIT;
|