Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-17 00:03:38 +00:00
co-authored by renee-png
parent 4b23394680
commit 82f943c308
2 changed files with 77 additions and 0 deletions
@@ -0,0 +1,20 @@
ALTER TABLE public.cases
ADD COLUMN IF NOT EXISTS case_summary text,
ADD COLUMN IF NOT EXISTS opposing_party text,
ADD COLUMN IF NOT EXISTS opposing_counsel text,
ADD COLUMN IF NOT EXISTS opposing_counsel_firm text,
ADD COLUMN IF NOT EXISTS opposing_counsel_email text,
ADD COLUMN IF NOT EXISTS opposing_counsel_phone text,
ADD COLUMN IF NOT EXISTS court text,
ADD COLUMN IF NOT EXISTS jurisdiction text,
ADD COLUMN IF NOT EXISTS judge text,
ADD COLUMN IF NOT EXISTS court_case_number text,
ADD COLUMN IF NOT EXISTS case_caption text,
ADD COLUMN IF NOT EXISTS filing_date date,
ADD COLUMN IF NOT EXISTS next_hearing_date date,
ADD COLUMN IF NOT EXISTS next_hearing_notes text,
ADD COLUMN IF NOT EXISTS statute_of_limitations date,
ADD COLUMN IF NOT EXISTS claim_amount numeric,
ADD COLUMN IF NOT EXISTS settlement_amount numeric,
ADD COLUMN IF NOT EXISTS litigation_stage text,
ADD COLUMN IF NOT EXISTS key_dates jsonb NOT NULL DEFAULT '[]'::jsonb;