a1b40e7a9c
- Updated database connection to support Turso auth token - Added vercel.json with bun build configuration - Updated environment schema for production deployment - Added new features and components for production readiness
2 lines
147 B
SQL
2 lines
147 B
SQL
ALTER TABLE `beenvoice_invoice` ADD COLUMN `taxRate` real NOT NULL DEFAULT 0;
|
|
UPDATE `beenvoice_invoice` SET `taxRate` = 0 WHERE `taxRate` IS NULL; |