diff --git a/src/integrations/supabase/types.ts b/src/integrations/supabase/types.ts index afed045..b04d819 100644 --- a/src/integrations/supabase/types.ts +++ b/src/integrations/supabase/types.ts @@ -1059,6 +1059,7 @@ export type Database = { notes: string | null phone: string | null postal_code: string | null + property_address: string | null state: string | null title: string | null updated_at: string @@ -1079,6 +1080,7 @@ export type Database = { notes?: string | null phone?: string | null postal_code?: string | null + property_address?: string | null state?: string | null title?: string | null updated_at?: string @@ -1099,6 +1101,7 @@ export type Database = { notes?: string | null phone?: string | null postal_code?: string | null + property_address?: string | null state?: string | null title?: string | null updated_at?: string diff --git a/supabase/migrations/20260426085945_fbe7902f-92cb-4dee-8b82-10246f03d39f.sql b/supabase/migrations/20260426085945_fbe7902f-92cb-4dee-8b82-10246f03d39f.sql new file mode 100644 index 0000000..a987bdf --- /dev/null +++ b/supabase/migrations/20260426085945_fbe7902f-92cb-4dee-8b82-10246f03d39f.sql @@ -0,0 +1,2 @@ +ALTER TABLE public.contacts + ADD COLUMN IF NOT EXISTS property_address text; \ No newline at end of file