Files
backend/database/migrations/039_invoice_account_holder.sql
Alireza HassaniandCursor 3faeb9bc0d Expand invoices with full templates, public viewer API, and account holder.
Add invoice template CRUD, key points/accounts, public GET endpoint, and migration 039 for account_holder_name.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-26 11:04:26 +03:30

8 lines
254 B
SQL

-- Add account holder name to invoice / template bank accounts
ALTER TABLE invoice_accounts
ADD COLUMN IF NOT EXISTS account_holder_name VARCHAR(255);
ALTER TABLE invoice_template_accounts
ADD COLUMN IF NOT EXISTS account_holder_name VARCHAR(255);