From cab4d86b5c9a4cfd8d13f7518f121498e696fe86 Mon Sep 17 00:00:00 2001 From: Carlos Escalante Date: Wed, 1 Apr 2026 10:21:28 -0600 Subject: [PATCH] Restore MEMP/MPAT in Bank enum for DB compatibility Existing account rows reference these values. Enum must stay compatible with data in production. Only the frontend and seed data were cleaned up. Co-Authored-By: Claude Opus 4.6 (1M context) --- backend/app/models/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/app/models/models.py b/backend/app/models/models.py index ce4503a..32a17c1 100644 --- a/backend/app/models/models.py +++ b/backend/app/models/models.py @@ -46,6 +46,8 @@ class Bank(str, enum.Enum): FCL = "FCL" ROP = "ROP" VOL = "VOL" + MEMP = "MEMP" + MPAT = "MPAT" MORTGAGE = "MORTGAGE"