From 56ab7e4bb3888fe24f7429290d9cc6a0a4a336ab Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 7 Jul 2011 18:37:58 +0530 Subject: [PATCH] Added patch to remove feed entries starting with "New" --- patches/patch.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/patches/patch.py b/patches/patch.py index fb66a47e6c6..7f023e2e5b7 100644 --- a/patches/patch.py +++ b/patches/patch.py @@ -1,7 +1,7 @@ # REMEMBER to update this # ======================== -last_patch = 317 +last_patch = 318 #------------------------------------------- @@ -1275,4 +1275,7 @@ def execute(patch_no): pass elif patch_no == 317: sql("update `tabPage` set name = 'profile-settings' where page_name = 'Profile Settings'") + elif patch_no == 318: + sql("delete from tabFeed where doc_name like 'New %'") +