Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
9265805396
commit
a0b6ada0bd
@@ -2775,6 +2775,86 @@ export type Database = {
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
public_page_sections: {
|
||||
Row: {
|
||||
content: Json
|
||||
created_at: string
|
||||
id: string
|
||||
page_id: string
|
||||
section_type: string
|
||||
sort_order: number
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
content?: Json
|
||||
created_at?: string
|
||||
id?: string
|
||||
page_id: string
|
||||
section_type: string
|
||||
sort_order?: number
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
content?: Json
|
||||
created_at?: string
|
||||
id?: string
|
||||
page_id?: string
|
||||
section_type?: string
|
||||
sort_order?: number
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "public_page_sections_page_id_fkey"
|
||||
columns: ["page_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "public_pages"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
public_pages: {
|
||||
Row: {
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
id: string
|
||||
meta_description: string | null
|
||||
published_at: string | null
|
||||
show_in_nav: boolean
|
||||
slug: string
|
||||
sort_order: number
|
||||
status: string
|
||||
title: string
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
id?: string
|
||||
meta_description?: string | null
|
||||
published_at?: string | null
|
||||
show_in_nav?: boolean
|
||||
slug: string
|
||||
sort_order?: number
|
||||
status?: string
|
||||
title: string
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
id?: string
|
||||
meta_description?: string | null
|
||||
published_at?: string | null
|
||||
show_in_nav?: boolean
|
||||
slug?: string
|
||||
sort_order?: number
|
||||
status?: string
|
||||
title?: string
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
smtp_settings: {
|
||||
Row: {
|
||||
created_at: string
|
||||
|
||||
Reference in New Issue
Block a user