From 13e01ba98abccdfacf69fa6e39bb53d800862b70 Mon Sep 17 00:00:00 2001 From: Ankit Yadav Date: Sun, 25 Jan 2026 17:47:04 +0530 Subject: [PATCH] cleanup: migration file rss_feed database contains outdated data that's no longer being used and has inconsistent timestamps --- .../src/main/resources/db/V16__Remove_Rss_Invalid_Data.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 application/src/main/resources/db/V16__Remove_Rss_Invalid_Data.sql diff --git a/application/src/main/resources/db/V16__Remove_Rss_Invalid_Data.sql b/application/src/main/resources/db/V16__Remove_Rss_Invalid_Data.sql new file mode 100644 index 0000000000..802c3b20d5 --- /dev/null +++ b/application/src/main/resources/db/V16__Remove_Rss_Invalid_Data.sql @@ -0,0 +1,5 @@ +DELETE FROM rss_feed +WHERE url NOT IN ( + 'https://inside.java/feed.xml', + 'https://www.youtube.com/feeds/videos.xml?playlist_id=UUSHmRtPmgnQ04CMUpSUqPfhxQ' + );