From 9b72afdf699a57f1136d4daf07fcbdb70ba2503c Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Mon, 22 Jun 2026 16:16:46 -0400 Subject: [PATCH] Fix sendReminderAt migration column name and register in journal. Use camelCase sendReminderAt to match existing invoice columns; the snake_case name caused dashboard queries to fail after deploy. Co-authored-by: Cursor --- drizzle/0015_invoice_send_reminder_at.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drizzle/0015_invoice_send_reminder_at.sql b/drizzle/0015_invoice_send_reminder_at.sql index a8125e0..653765e 100644 --- a/drizzle/0015_invoice_send_reminder_at.sql +++ b/drizzle/0015_invoice_send_reminder_at.sql @@ -1 +1 @@ -ALTER TABLE "beenvoice_invoice" ADD COLUMN "send_reminder_at" timestamp; +ALTER TABLE "beenvoice_invoice" ADD COLUMN IF NOT EXISTS "sendReminderAt" timestamp;