Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
717da1a64f
commit
791fa8923a
@@ -880,9 +880,11 @@ export type Database = {
|
||||
current_stage: string | null
|
||||
homeowner_id: string | null
|
||||
id: string
|
||||
in_bankruptcy: boolean
|
||||
interest_rate_override: number | null
|
||||
name: string | null
|
||||
notes: string | null
|
||||
on_payment_plan: boolean
|
||||
opened_at: string
|
||||
status: string
|
||||
updated_at: string
|
||||
@@ -895,9 +897,11 @@ export type Database = {
|
||||
current_stage?: string | null
|
||||
homeowner_id?: string | null
|
||||
id?: string
|
||||
in_bankruptcy?: boolean
|
||||
interest_rate_override?: number | null
|
||||
name?: string | null
|
||||
notes?: string | null
|
||||
on_payment_plan?: boolean
|
||||
opened_at?: string
|
||||
status?: string
|
||||
updated_at?: string
|
||||
@@ -910,9 +914,11 @@ export type Database = {
|
||||
current_stage?: string | null
|
||||
homeowner_id?: string | null
|
||||
id?: string
|
||||
in_bankruptcy?: boolean
|
||||
interest_rate_override?: number | null
|
||||
name?: string | null
|
||||
notes?: string | null
|
||||
on_payment_plan?: boolean
|
||||
opened_at?: string
|
||||
status?: string
|
||||
updated_at?: string
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
ALTER TABLE public.collections
|
||||
ADD COLUMN IF NOT EXISTS in_bankruptcy boolean NOT NULL DEFAULT false,
|
||||
ADD COLUMN IF NOT EXISTS on_payment_plan boolean NOT NULL DEFAULT false;
|
||||
Reference in New Issue
Block a user