Fix ride versioning synchronization

This commit is contained in:
gpt-engineer-app[bot]
2025-10-30 13:51:33 +00:00
parent 2efc4885a7
commit 6d6ec11e8b
2 changed files with 121 additions and 3 deletions

View File

@@ -2587,6 +2587,44 @@ export type Database = {
},
]
}
ride_former_names: {
Row: {
created_at: string | null
id: string
name: string
ride_id: string
updated_at: string | null
used_from: string | null
used_until: string | null
}
Insert: {
created_at?: string | null
id?: string
name: string
ride_id: string
updated_at?: string | null
used_from?: string | null
used_until?: string | null
}
Update: {
created_at?: string | null
id?: string
name?: string
ride_id?: string
updated_at?: string | null
used_from?: string | null
used_until?: string | null
}
Relationships: [
{
foreignKeyName: "ride_former_names_ride_id_fkey"
columns: ["ride_id"]
isOneToOne: false
referencedRelation: "rides"
referencedColumns: ["id"]
},
]
}
ride_kiddie_details: {
Row: {
character_theme: string | null
@@ -3280,6 +3318,7 @@ export type Database = {
}
ride_versions: {
Row: {
age_requirement: number | null
angle_degrees: number | null
animatronics_count: number | null
arm_length_meters: number | null
@@ -3295,6 +3334,7 @@ export type Database = {
character_theme: string | null
closing_date: string | null
closing_date_precision: string | null
coaster_type: string | null
created_at: string
created_by: string | null
description: string | null
@@ -3303,10 +3343,11 @@ export type Database = {
duration_seconds: number | null
educational_theme: string | null
flume_type: string | null
former_names: Json | null
gforce_max: number | null
height_meters: number | null
height_requirement_cm: number | null
image_url: string | null
intensity_level: string | null
inversions_count: number | null
is_current: boolean
length_meters: number | null
@@ -3325,12 +3366,14 @@ export type Database = {
propulsion_method: string[] | null
ride_id: string
ride_model_id: string | null
ride_sub_type: string | null
ride_system: string | null
rotation_speed_rpm: number | null
rotation_type: string | null
round_trip_duration_seconds: number | null
route_length_meters: number | null
scenes_count: number | null
seating_type: string | null
show_duration_seconds: number | null
slug: string
splash_height_meters: number | null
@@ -3351,6 +3394,7 @@ export type Database = {
wetness_level: string | null
}
Insert: {
age_requirement?: number | null
angle_degrees?: number | null
animatronics_count?: number | null
arm_length_meters?: number | null
@@ -3366,6 +3410,7 @@ export type Database = {
character_theme?: string | null
closing_date?: string | null
closing_date_precision?: string | null
coaster_type?: string | null
created_at?: string
created_by?: string | null
description?: string | null
@@ -3374,10 +3419,11 @@ export type Database = {
duration_seconds?: number | null
educational_theme?: string | null
flume_type?: string | null
former_names?: Json | null
gforce_max?: number | null
height_meters?: number | null
height_requirement_cm?: number | null
image_url?: string | null
intensity_level?: string | null
inversions_count?: number | null
is_current?: boolean
length_meters?: number | null
@@ -3396,12 +3442,14 @@ export type Database = {
propulsion_method?: string[] | null
ride_id: string
ride_model_id?: string | null
ride_sub_type?: string | null
ride_system?: string | null
rotation_speed_rpm?: number | null
rotation_type?: string | null
round_trip_duration_seconds?: number | null
route_length_meters?: number | null
scenes_count?: number | null
seating_type?: string | null
show_duration_seconds?: number | null
slug: string
splash_height_meters?: number | null
@@ -3422,6 +3470,7 @@ export type Database = {
wetness_level?: string | null
}
Update: {
age_requirement?: number | null
angle_degrees?: number | null
animatronics_count?: number | null
arm_length_meters?: number | null
@@ -3437,6 +3486,7 @@ export type Database = {
character_theme?: string | null
closing_date?: string | null
closing_date_precision?: string | null
coaster_type?: string | null
created_at?: string
created_by?: string | null
description?: string | null
@@ -3445,10 +3495,11 @@ export type Database = {
duration_seconds?: number | null
educational_theme?: string | null
flume_type?: string | null
former_names?: Json | null
gforce_max?: number | null
height_meters?: number | null
height_requirement_cm?: number | null
image_url?: string | null
intensity_level?: string | null
inversions_count?: number | null
is_current?: boolean
length_meters?: number | null
@@ -3467,12 +3518,14 @@ export type Database = {
propulsion_method?: string[] | null
ride_id?: string
ride_model_id?: string | null
ride_sub_type?: string | null
ride_system?: string | null
rotation_speed_rpm?: number | null
rotation_type?: string | null
round_trip_duration_seconds?: number | null
route_length_meters?: number | null
scenes_count?: number | null
seating_type?: string | null
show_duration_seconds?: number | null
slug?: string
splash_height_meters?: number | null