Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
5fc84b98c1
commit
eaa036ab98
@@ -14,6 +14,80 @@ export type Database = {
|
||||
}
|
||||
public: {
|
||||
Tables: {
|
||||
archive_categories: {
|
||||
Row: {
|
||||
active: boolean
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
id: string
|
||||
key: string
|
||||
label: string
|
||||
sort_order: number
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
active?: boolean
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
id?: string
|
||||
key: string
|
||||
label: string
|
||||
sort_order?: number
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
active?: boolean
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
id?: string
|
||||
key?: string
|
||||
label?: string
|
||||
sort_order?: number
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
archive_records: {
|
||||
Row: {
|
||||
batch_id: string | null
|
||||
category_id: string
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
data: Json
|
||||
id: string
|
||||
row_index: number | null
|
||||
source_filename: string | null
|
||||
}
|
||||
Insert: {
|
||||
batch_id?: string | null
|
||||
category_id: string
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
data?: Json
|
||||
id?: string
|
||||
row_index?: number | null
|
||||
source_filename?: string | null
|
||||
}
|
||||
Update: {
|
||||
batch_id?: string | null
|
||||
category_id?: string
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
data?: Json
|
||||
id?: string
|
||||
row_index?: number | null
|
||||
source_filename?: string | null
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "archive_records_category_id_fkey"
|
||||
columns: ["category_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "archive_categories"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
call_logs: {
|
||||
Row: {
|
||||
billable: boolean
|
||||
|
||||
Reference in New Issue
Block a user