mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 11:31:12 -05:00
Fix moderation queue issues
This commit is contained in:
@@ -4798,22 +4798,26 @@ export type Database = {
|
||||
}
|
||||
moderation_queue_with_entities: {
|
||||
Row: {
|
||||
assigned_at: string | null
|
||||
assigned_profile: Json | null
|
||||
assigned_to: string | null
|
||||
content: Json | null
|
||||
created_at: string | null
|
||||
escalated: boolean | null
|
||||
escalated_at: string | null
|
||||
escalation_reason: string | null
|
||||
id: string | null
|
||||
is_test_data: boolean | null
|
||||
locked_until: string | null
|
||||
review_notes: string | null
|
||||
reviewed_at: string | null
|
||||
reviewed_by: string | null
|
||||
reviewer_notes: string | null
|
||||
reviewer_profile: Json | null
|
||||
status: string | null
|
||||
submission_items: Json | null
|
||||
submission_type: string | null
|
||||
submitted_at: string | null
|
||||
submitted_by: string | null
|
||||
submitter_id: string | null
|
||||
submitter_profile: Json | null
|
||||
}
|
||||
Relationships: [
|
||||
@@ -4847,14 +4851,14 @@ export type Database = {
|
||||
},
|
||||
{
|
||||
foreignKeyName: "content_submissions_user_id_fkey"
|
||||
columns: ["submitted_by"]
|
||||
columns: ["submitter_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "filtered_profiles"
|
||||
referencedColumns: ["user_id"]
|
||||
},
|
||||
{
|
||||
foreignKeyName: "content_submissions_user_id_fkey"
|
||||
columns: ["submitted_by"]
|
||||
columns: ["submitter_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "profiles"
|
||||
referencedColumns: ["user_id"]
|
||||
|
||||
Reference in New Issue
Block a user