Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-19 17:54:53 +00:00
co-authored by renee-png
parent 5fc84b98c1
commit eaa036ab98
2 changed files with 136 additions and 0 deletions
+74
View File
@@ -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