After renaming column in regex, it also needs to be renamed in vw_regex

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2019-02-05 19:41:11 +01:00
parent ec5b16ef85
commit 9984647ebb
No known key found for this signature in database
GPG Key ID: FB60471F0575164A
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ CREATE VIEW vw_whitelist AS SELECT DISTINCT a.domain
FROM whitelist a
WHERE a.enabled == 1;
CREATE VIEW vw_regex AS SELECT DISTINCT a.domain
CREATE VIEW vw_regex AS SELECT DISTINCT a.filter
FROM regex a
WHERE a.enabled == 1;