mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 17:11:12 -05:00
Implement Park Form and Edit/Add Functionality
This commit is contained in:
@@ -250,7 +250,9 @@ export type Database = {
|
||||
parks: {
|
||||
Row: {
|
||||
average_rating: number | null
|
||||
banner_image_id: string | null
|
||||
banner_image_url: string | null
|
||||
card_image_id: string | null
|
||||
card_image_url: string | null
|
||||
closing_date: string | null
|
||||
coaster_count: number | null
|
||||
@@ -274,7 +276,9 @@ export type Database = {
|
||||
}
|
||||
Insert: {
|
||||
average_rating?: number | null
|
||||
banner_image_id?: string | null
|
||||
banner_image_url?: string | null
|
||||
card_image_id?: string | null
|
||||
card_image_url?: string | null
|
||||
closing_date?: string | null
|
||||
coaster_count?: number | null
|
||||
@@ -298,7 +302,9 @@ export type Database = {
|
||||
}
|
||||
Update: {
|
||||
average_rating?: number | null
|
||||
banner_image_id?: string | null
|
||||
banner_image_url?: string | null
|
||||
card_image_id?: string | null
|
||||
card_image_url?: string | null
|
||||
closing_date?: string | null
|
||||
coaster_count?: number | null
|
||||
|
||||
Reference in New Issue
Block a user