mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 15:11:12 -05:00
Implement planned features
This commit is contained in:
@@ -450,6 +450,44 @@ export type Database = {
|
||||
},
|
||||
]
|
||||
}
|
||||
conflict_resolutions: {
|
||||
Row: {
|
||||
conflict_details: Json | null
|
||||
created_at: string
|
||||
detected_at: string
|
||||
id: string
|
||||
resolution_strategy: string
|
||||
resolved_by: string | null
|
||||
submission_id: string
|
||||
}
|
||||
Insert: {
|
||||
conflict_details?: Json | null
|
||||
created_at?: string
|
||||
detected_at?: string
|
||||
id?: string
|
||||
resolution_strategy: string
|
||||
resolved_by?: string | null
|
||||
submission_id: string
|
||||
}
|
||||
Update: {
|
||||
conflict_details?: Json | null
|
||||
created_at?: string
|
||||
detected_at?: string
|
||||
id?: string
|
||||
resolution_strategy?: string
|
||||
resolved_by?: string | null
|
||||
submission_id?: string
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "conflict_resolutions_submission_id_fkey"
|
||||
columns: ["submission_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "content_submissions"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
contact_email_threads: {
|
||||
Row: {
|
||||
body_html: string | null
|
||||
|
||||
Reference in New Issue
Block a user