Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
097c3b14e0
commit
b14a968191
@@ -524,6 +524,38 @@ export type Database = {
|
||||
},
|
||||
]
|
||||
}
|
||||
document_folders: {
|
||||
Row: {
|
||||
case_id: string
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
id: string
|
||||
path: string
|
||||
}
|
||||
Insert: {
|
||||
case_id: string
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
id?: string
|
||||
path: string
|
||||
}
|
||||
Update: {
|
||||
case_id?: string
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
id?: string
|
||||
path?: string
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "document_folders_case_id_fkey"
|
||||
columns: ["case_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "cases"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
document_templates: {
|
||||
Row: {
|
||||
body: string
|
||||
@@ -571,6 +603,7 @@ export type Database = {
|
||||
case_id: string
|
||||
created_at: string
|
||||
description: string | null
|
||||
folder: string
|
||||
id: string
|
||||
mime_type: string | null
|
||||
name: string
|
||||
@@ -582,6 +615,7 @@ export type Database = {
|
||||
case_id: string
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
folder?: string
|
||||
id?: string
|
||||
mime_type?: string | null
|
||||
name: string
|
||||
@@ -593,6 +627,7 @@ export type Database = {
|
||||
case_id?: string
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
folder?: string
|
||||
id?: string
|
||||
mime_type?: string | null
|
||||
name?: string
|
||||
|
||||
Reference in New Issue
Block a user