Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
81bf50c97c
commit
5cb4fec6e5
@@ -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;
|
||||
Reference in New Issue
Block a user