mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 17:51:13 -05:00
feat: Implement contact submission archiving and deletion
This commit is contained in:
@@ -498,6 +498,13 @@ export type Database = {
|
||||
referencedRelation: "contact_submissions"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
{
|
||||
foreignKeyName: "fk_submission_cascade"
|
||||
columns: ["submission_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "contact_submissions"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
contact_rate_limits: {
|
||||
@@ -524,6 +531,8 @@ export type Database = {
|
||||
contact_submissions: {
|
||||
Row: {
|
||||
admin_notes: string | null
|
||||
archived_at: string | null
|
||||
archived_by: string | null
|
||||
assigned_to: string | null
|
||||
category: string
|
||||
created_at: string
|
||||
@@ -549,6 +558,8 @@ export type Database = {
|
||||
}
|
||||
Insert: {
|
||||
admin_notes?: string | null
|
||||
archived_at?: string | null
|
||||
archived_by?: string | null
|
||||
assigned_to?: string | null
|
||||
category: string
|
||||
created_at?: string
|
||||
@@ -574,6 +585,8 @@ export type Database = {
|
||||
}
|
||||
Update: {
|
||||
admin_notes?: string | null
|
||||
archived_at?: string | null
|
||||
archived_by?: string | null
|
||||
assigned_to?: string | null
|
||||
category?: string
|
||||
created_at?: string
|
||||
|
||||
Reference in New Issue
Block a user