From fe2b595a35d86ebee27e2ce1b023ab615f8a9200 Mon Sep 17 00:00:00 2001 From: Abhijit Gupta Date: Tue, 26 Nov 2024 23:06:47 -0500 Subject: [PATCH] Update delete_old_data.py --- backend/scripts/delete_old_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/scripts/delete_old_data.py b/backend/scripts/delete_old_data.py index 5ec1512..fcab417 100755 --- a/backend/scripts/delete_old_data.py +++ b/backend/scripts/delete_old_data.py @@ -40,7 +40,7 @@ async def delete_old_rows(cutoff_date: datetime): async def main(): # Replace 'your_date_field' with the actual name of your date field - cutoff_date = datetime(2023, 12, 31) + cutoff_date = datetime(2024, 12, 31) count = await count_old_rows(cutoff_date) if count == 0: