Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 01:59:33 +00:00
co-authored by renee-png
parent 81bf50c97c
commit 5cb4fec6e5
2 changed files with 10 additions and 0 deletions
+6
View File
@@ -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
@@ -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;