From d338283d8f020ea000bf8f404f684313343766bf Mon Sep 17 00:00:00 2001 From: Christian Hood Date: Thu, 19 Mar 2026 21:04:12 -0400 Subject: [PATCH] Add missed migration for financing start_date column This migration was part of the financing start_date feature (119d53c) but was not staged by the previous agent. Co-Authored-By: Claude Opus 4.6 --- db/migrations/004_financing_start_date.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 db/migrations/004_financing_start_date.sql diff --git a/db/migrations/004_financing_start_date.sql b/db/migrations/004_financing_start_date.sql new file mode 100644 index 0000000..4045dd5 --- /dev/null +++ b/db/migrations/004_financing_start_date.sql @@ -0,0 +1 @@ +ALTER TABLE financing_plans ADD COLUMN IF NOT EXISTS start_date DATE NOT NULL DEFAULT CURRENT_DATE;