Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
000e4f74e9
commit
6b56628dd8
@@ -955,6 +955,7 @@ export type Database = {
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
description: string | null
|
||||
fields: Json
|
||||
font_family: string
|
||||
font_size_pt: number
|
||||
hide_title: boolean
|
||||
@@ -969,6 +970,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
description?: string | null
|
||||
fields?: Json
|
||||
font_family?: string
|
||||
font_size_pt?: number
|
||||
hide_title?: boolean
|
||||
@@ -983,6 +985,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
description?: string | null
|
||||
fields?: Json
|
||||
font_family?: string
|
||||
font_size_pt?: number
|
||||
hide_title?: boolean
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE public.custom_form_templates
|
||||
ADD COLUMN IF NOT EXISTS fields jsonb NOT NULL DEFAULT '[]'::jsonb;
|
||||
Reference in New Issue
Block a user