SysOps config backup 2026-06-09 01:38 UTC

This commit is contained in:
SysOps Agent
2026-06-09 01:38:01 +00:00
parent 5d60d33db1
commit 69fe67cc0e
28 changed files with 1999 additions and 0 deletions
@@ -0,0 +1,15 @@
-- RetailDetail Food category feed + trending focus
UPDATE rss_feeds SET
name = 'RetailDetail Food',
url = 'https://www.retaildetail.nl/category/food/feed/',
category = 'food',
is_active = TRUE
WHERE name IN ('RetailDetail', 'RetailDetail Food');
INSERT INTO rss_feeds (name, url, category, is_active) VALUES
('RetailDetail Food', 'https://www.retaildetail.nl/category/food/feed/', 'food', TRUE)
ON CONFLICT (name) DO UPDATE SET
url = EXCLUDED.url,
category = EXCLUDED.category,
is_active = TRUE;