Implement Park Form and Edit/Add Functionality

This commit is contained in:
gpt-engineer-app[bot]
2025-09-29 23:45:35 +00:00
parent 97c7a4226d
commit 0ddae7493c
6 changed files with 311 additions and 29 deletions

View File

@@ -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