mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2025-12-13 09:34:44 -05:00
- 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
3 lines
170 B
SQL
3 lines
170 B
SQL
ALTER TABLE `beenvoice_invoice_item` ADD COLUMN `position` integer DEFAULT 0 NOT NULL;
|
|
CREATE INDEX `invoice_item_position_idx` ON `beenvoice_invoice_item` (`position`);
|