Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
0905b1c9f6
commit
160bfdda30
@@ -742,7 +742,7 @@ export type Database = {
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
current_stage: string | null
|
||||
homeowner_id: string
|
||||
homeowner_id: string | null
|
||||
id: string
|
||||
interest_rate_override: number | null
|
||||
name: string | null
|
||||
@@ -757,7 +757,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
current_stage?: string | null
|
||||
homeowner_id: string
|
||||
homeowner_id?: string | null
|
||||
id?: string
|
||||
interest_rate_override?: number | null
|
||||
name?: string | null
|
||||
@@ -772,7 +772,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
current_stage?: string | null
|
||||
homeowner_id?: string
|
||||
homeowner_id?: string | null
|
||||
id?: string
|
||||
interest_rate_override?: number | null
|
||||
name?: string | null
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE public.collections ALTER COLUMN homeowner_id DROP NOT NULL;
|
||||
Reference in New Issue
Block a user