mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 14:31:13 -05:00
Fix review lifecycle tracking
This commit is contained in:
@@ -1900,6 +1900,7 @@ export type Database = {
|
||||
}
|
||||
review_deletions: {
|
||||
Row: {
|
||||
content: string | null
|
||||
created_at: string
|
||||
deleted_at: string | null
|
||||
deleted_by: string | null
|
||||
@@ -1908,12 +1909,12 @@ export type Database = {
|
||||
park_id: string | null
|
||||
rating: number
|
||||
review_id: string
|
||||
review_text: string | null
|
||||
ride_id: string | null
|
||||
user_id: string
|
||||
was_moderated: boolean | null
|
||||
}
|
||||
Insert: {
|
||||
content?: string | null
|
||||
created_at: string
|
||||
deleted_at?: string | null
|
||||
deleted_by?: string | null
|
||||
@@ -1922,12 +1923,12 @@ export type Database = {
|
||||
park_id?: string | null
|
||||
rating: number
|
||||
review_id: string
|
||||
review_text?: string | null
|
||||
ride_id?: string | null
|
||||
user_id: string
|
||||
was_moderated?: boolean | null
|
||||
}
|
||||
Update: {
|
||||
content?: string | null
|
||||
created_at?: string
|
||||
deleted_at?: string | null
|
||||
deleted_by?: string | null
|
||||
@@ -1936,7 +1937,6 @@ export type Database = {
|
||||
park_id?: string | null
|
||||
rating?: number
|
||||
review_id?: string
|
||||
review_text?: string | null
|
||||
ride_id?: string | null
|
||||
user_id?: string
|
||||
was_moderated?: boolean | null
|
||||
|
||||
Reference in New Issue
Block a user