From 0708d03dfe1e35823e27396d64cd4631790c4bbc Mon Sep 17 00:00:00 2001 From: Hamed Valiollahi Bayeki Date: Mon, 15 Jan 2024 12:57:26 -0800 Subject: [PATCH] fix: add a reverse noop to avoid downgrade issues --- .../migrations/0020_correct_effective_date_of_transfer_2095.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/api/migrations/0020_correct_effective_date_of_transfer_2095.py b/backend/api/migrations/0020_correct_effective_date_of_transfer_2095.py index 41e683d85..fbb0d2b99 100644 --- a/backend/api/migrations/0020_correct_effective_date_of_transfer_2095.py +++ b/backend/api/migrations/0020_correct_effective_date_of_transfer_2095.py @@ -35,5 +35,5 @@ class Migration(migrations.Migration): ] operations = [ - migrations.RunPython(update_transfer_effective_date), + migrations.RunPython(update_transfer_effective_date, reverse_code=migrations.RunPython.noop), ]