Refactor RideForm image handling

This commit is contained in:
gpt-engineer-app[bot]
2025-09-29 22:44:23 +00:00
parent 2c6acf21fe
commit af00cefc1c
6 changed files with 112 additions and 28 deletions

View File

@@ -614,7 +614,11 @@ export type Database = {
Row: {
age_requirement: number | null
average_rating: number | null
banner_image_id: string | null
banner_image_url: string | null
capacity_per_hour: number | null
card_image_id: string | null
card_image_url: string | null
category: string
closing_date: string | null
coaster_stats: Json | null
@@ -650,7 +654,11 @@ export type Database = {
Insert: {
age_requirement?: number | null
average_rating?: number | null
banner_image_id?: string | null
banner_image_url?: string | null
capacity_per_hour?: number | null
card_image_id?: string | null
card_image_url?: string | null
category: string
closing_date?: string | null
coaster_stats?: Json | null
@@ -686,7 +694,11 @@ export type Database = {
Update: {
age_requirement?: number | null
average_rating?: number | null
banner_image_id?: string | null
banner_image_url?: string | null
capacity_per_hour?: number | null
card_image_id?: string | null
card_image_url?: string | null
category?: string
closing_date?: string | null
coaster_stats?: Json | null