Skip to content
Snippets Groups Projects
Commit e616c20d authored by Peter Rotich's avatar Peter Rotich
Browse files

Set target to 'Email' on exisiting email filters

parent 62bdcb2b
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,8 @@ ALTER TABLE `%TABLE_PREFIX%filter` ...@@ -16,6 +16,8 @@ ALTER TABLE `%TABLE_PREFIX%filter`
ADD `target` ENUM( 'Any', 'Web', 'Email', 'API' ) NOT NULL DEFAULT 'Any' AFTER `sla_id` , ADD `target` ENUM( 'Any', 'Web', 'Email', 'API' ) NOT NULL DEFAULT 'Any' AFTER `sla_id` ,
ADD INDEX ( `target` ); ADD INDEX ( `target` );
UPDATE `%TABLE_PREFIX%filter` SET `target` = 'Email' WHERE `email_id` != 0;
-- Finished with patch -- Finished with patch
UPDATE `%TABLE_PREFIX%config` UPDATE `%TABLE_PREFIX%config`
SET `schema_signature`='1da1bcbafcedc65efef58f142a48ac91'; SET `schema_signature`='1da1bcbafcedc65efef58f142a48ac91';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment