Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 07:33:28 +00:00
co-authored by renee-png
parent 0905b1c9f6
commit 160bfdda30
2 changed files with 4 additions and 3 deletions
+3 -3
View File
@@ -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;