change regex search in events
This commit is contained in:
parent
df7435132a
commit
100f437a7a
|
@ -2,7 +2,8 @@ START TRANSACTION;
|
||||||
|
|
||||||
-- Watch out! The following field migration must be done before altering the corresponding table.
|
-- Watch out! The following field migration must be done before altering the corresponding table.
|
||||||
UPDATE `tevent_filter`
|
UPDATE `tevent_filter`
|
||||||
SET `search` = `regex`
|
SET `search` = `regex`,
|
||||||
|
`regex` = '1'
|
||||||
WHERE `regex` IS NOT NULL AND `regex` != '';
|
WHERE `regex` IS NOT NULL AND `regex` != '';
|
||||||
|
|
||||||
-- Watch out! The following alter command must be done after the previous update of this table.
|
-- Watch out! The following alter command must be done after the previous update of this table.
|
||||||
|
|
Loading…
Reference in New Issue