compassmock/drizzle/0002_tricky_harpoon.sql
Nicholai 006c960ac2 feat(db): add customers/vendors tables and seed data
Extend schema with customers and vendors tables, add project
fields (status, address, client_name, project_manager), and
seed with 40 customers, 25 vendors, and 10 projects from
client CSV data.
2026-01-24 13:29:32 -07:00

4 lines
278 B
SQL
Executable File

ALTER TABLE `projects` ADD `status` text DEFAULT 'OPEN' NOT NULL;--> statement-breakpoint
ALTER TABLE `projects` ADD `address` text;--> statement-breakpoint
ALTER TABLE `projects` ADD `client_name` text;--> statement-breakpoint
ALTER TABLE `projects` ADD `project_manager` text;