mirror of
https://git.meshkee.com/Meshkee/backend.git
synced 2026-08-11 22:30:59 +04:30
Add invoice template CRUD, key points/accounts, public GET endpoint, and migration 039 for account_holder_name. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
254 B
SQL
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);
|