change regex search in events

This commit is contained in:
alejandro.campos@artica.es 2024-02-16 10:30:05 +01:00
parent df7435132a
commit 100f437a7a
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@ START TRANSACTION;
-- Watch out! The following field migration must be done before altering the corresponding table.
UPDATE `tevent_filter`
SET `search` = `regex`
SET `search` = `regex`,
`regex` = '1'
WHERE `regex` IS NOT NULL AND `regex` != '';
-- Watch out! The following alter command must be done after the previous update of this table.