mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2026-05-08 09:38:55 -04:00
fbeca7cfee
- Deleted the start.sh script for container management. - Added AGENTS.md for project guidelines and development principles. - Introduced new SQL migration files for user appearance preferences and platform settings. - Implemented appearance provider to manage user interface themes and preferences. - Created branding utility to define and manage branding-related constants and types. Co-authored-by: Copilot <copilot@github.com>
15 lines
640 B
SQL
15 lines
640 B
SQL
ALTER TABLE "beenvoice_platform_setting"
|
|
ADD COLUMN "pdfTemplate" varchar(20) DEFAULT 'classic' NOT NULL;
|
|
--> statement-breakpoint
|
|
ALTER TABLE "beenvoice_platform_setting"
|
|
ADD COLUMN "pdfAccentColor" varchar(50) DEFAULT '#111827' NOT NULL;
|
|
--> statement-breakpoint
|
|
ALTER TABLE "beenvoice_platform_setting"
|
|
ADD COLUMN "pdfFooterText" varchar(120) DEFAULT 'Professional Invoicing' NOT NULL;
|
|
--> statement-breakpoint
|
|
ALTER TABLE "beenvoice_platform_setting"
|
|
ADD COLUMN "pdfShowLogo" boolean DEFAULT true NOT NULL;
|
|
--> statement-breakpoint
|
|
ALTER TABLE "beenvoice_platform_setting"
|
|
ADD COLUMN "pdfShowPageNumbers" boolean DEFAULT true NOT NULL;
|