diff --git a/src/integrations/supabase/types.ts b/src/integrations/supabase/types.ts index 83e55c5..78fdb4c 100644 --- a/src/integrations/supabase/types.ts +++ b/src/integrations/supabase/types.ts @@ -2162,6 +2162,8 @@ export type Database = { hourly_rate: number | null id: string phone: string | null + signature_block: string | null + signature_image_path: string | null timezone: string | null title: string | null updated_at: string @@ -2175,6 +2177,8 @@ export type Database = { hourly_rate?: number | null id: string phone?: string | null + signature_block?: string | null + signature_image_path?: string | null timezone?: string | null title?: string | null updated_at?: string @@ -2188,6 +2192,8 @@ export type Database = { hourly_rate?: number | null id?: string phone?: string | null + signature_block?: string | null + signature_image_path?: string | null timezone?: string | null title?: string | null updated_at?: string diff --git a/supabase/migrations/20260418015930_9b4dd1a4-bbde-4d53-8a24-d6bd69675211.sql b/supabase/migrations/20260418015930_9b4dd1a4-bbde-4d53-8a24-d6bd69675211.sql new file mode 100644 index 0000000..4199b71 --- /dev/null +++ b/supabase/migrations/20260418015930_9b4dd1a4-bbde-4d53-8a24-d6bd69675211.sql @@ -0,0 +1,4 @@ +-- Attorney signatures stored on profile +ALTER TABLE public.profiles + ADD COLUMN IF NOT EXISTS signature_block text, + ADD COLUMN IF NOT EXISTS signature_image_path text; \ No newline at end of file