- Add postal_code column to companies table
- Add pricing_tiers column to services table for tiered pricing
- Update timesheet upload to generate filename in format {firstname}-{lastname}-timesheet-{date}
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
3 lines
135 B
SQL
3 lines
135 B
SQL
-- Add pricing_tiers column to services table for tiered pricing
|
|
ALTER TABLE "services" ADD COLUMN IF NOT EXISTS "pricing_tiers" text;
|