Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 18:25:58 +00:00
co-authored by renee-png
parent f72b495a98
commit 2adc3712aa
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -2443,6 +2443,7 @@ export type Database = {
phone: string | null
signature_block: string | null
signature_image_path: string | null
signature_typed: string | null
timezone: string | null
title: string | null
updated_at: string
@@ -2458,6 +2459,7 @@ export type Database = {
phone?: string | null
signature_block?: string | null
signature_image_path?: string | null
signature_typed?: string | null
timezone?: string | null
title?: string | null
updated_at?: string
@@ -2473,6 +2475,7 @@ export type Database = {
phone?: string | null
signature_block?: string | null
signature_image_path?: string | null
signature_typed?: string | null
timezone?: string | null
title?: string | null
updated_at?: string
@@ -0,0 +1 @@
ALTER TABLE public.profiles ADD COLUMN IF NOT EXISTS signature_typed TEXT;