update category in filters table from Search to inbox

This commit is contained in:
Hongbo Wu
2023-11-16 17:25:00 +08:00
parent 8ccf37dbb0
commit 3327334bf6
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
-- Type: DO
-- Name: update_category_in_filters
-- Description: Update category column in filters table
BEGIN;
UPDATE omnivore.filters SET category = 'inbox' WHERE category = 'Search';
COMMIT;

View File

@ -0,0 +1,9 @@
-- Type: UNDO
-- Name: update_category_in_filters
-- Description: Update category column in filters table
BEGIN;
UPDATE omnivore.filters SET category = 'Search' WHERE category = 'inbox';
COMMIT;