mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 11:31:12 -05:00
Add coaster-specific fields
This commit is contained in:
@@ -3081,13 +3081,15 @@ export type Database = {
|
||||
opening_date: string | null
|
||||
opening_date_precision: string | null
|
||||
park_id: string | null
|
||||
propulsion_method: string[] | null
|
||||
ride_model_id: string | null
|
||||
ride_sub_type: string | null
|
||||
seating_type: string | null
|
||||
slug: string
|
||||
status: string
|
||||
submission_id: string
|
||||
track_material: string | null
|
||||
support_material: string[] | null
|
||||
track_material: string[] | null
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
@@ -3120,13 +3122,15 @@ export type Database = {
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
park_id?: string | null
|
||||
propulsion_method?: string[] | null
|
||||
ride_model_id?: string | null
|
||||
ride_sub_type?: string | null
|
||||
seating_type?: string | null
|
||||
slug: string
|
||||
status?: string
|
||||
submission_id: string
|
||||
track_material?: string | null
|
||||
support_material?: string[] | null
|
||||
track_material?: string[] | null
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
@@ -3159,13 +3163,15 @@ export type Database = {
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
park_id?: string | null
|
||||
propulsion_method?: string[] | null
|
||||
ride_model_id?: string | null
|
||||
ride_sub_type?: string | null
|
||||
seating_type?: string | null
|
||||
slug?: string
|
||||
status?: string
|
||||
submission_id?: string
|
||||
track_material?: string | null
|
||||
support_material?: string[] | null
|
||||
track_material?: string[] | null
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: [
|
||||
@@ -3304,12 +3310,14 @@ export type Database = {
|
||||
opening_date: string | null
|
||||
opening_date_precision: string | null
|
||||
park_id: string | null
|
||||
propulsion_method: string[] | null
|
||||
ride_id: string
|
||||
ride_model_id: string | null
|
||||
slug: string
|
||||
status: string
|
||||
submission_id: string | null
|
||||
track_material: string | null
|
||||
support_material: string[] | null
|
||||
track_material: string[] | null
|
||||
version_id: string
|
||||
version_number: number
|
||||
}
|
||||
@@ -3344,12 +3352,14 @@ export type Database = {
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
park_id?: string | null
|
||||
propulsion_method?: string[] | null
|
||||
ride_id: string
|
||||
ride_model_id?: string | null
|
||||
slug: string
|
||||
status: string
|
||||
submission_id?: string | null
|
||||
track_material?: string | null
|
||||
support_material?: string[] | null
|
||||
track_material?: string[] | null
|
||||
version_id?: string
|
||||
version_number: number
|
||||
}
|
||||
@@ -3384,12 +3394,14 @@ export type Database = {
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
park_id?: string | null
|
||||
propulsion_method?: string[] | null
|
||||
ride_id?: string
|
||||
ride_model_id?: string | null
|
||||
slug?: string
|
||||
status?: string
|
||||
submission_id?: string | null
|
||||
track_material?: string | null
|
||||
support_material?: string[] | null
|
||||
track_material?: string[] | null
|
||||
version_id?: string
|
||||
version_number?: number
|
||||
}
|
||||
@@ -3527,13 +3539,15 @@ export type Database = {
|
||||
opening_date: string | null
|
||||
opening_date_precision: string | null
|
||||
park_id: string
|
||||
propulsion_method: string[] | null
|
||||
review_count: number | null
|
||||
ride_model_id: string | null
|
||||
ride_sub_type: string | null
|
||||
seating_type: string | null
|
||||
slug: string
|
||||
status: string
|
||||
track_material: string | null
|
||||
support_material: string[] | null
|
||||
track_material: string[] | null
|
||||
updated_at: string
|
||||
view_count_30d: number | null
|
||||
view_count_7d: number | null
|
||||
@@ -3570,13 +3584,15 @@ export type Database = {
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
park_id: string
|
||||
propulsion_method?: string[] | null
|
||||
review_count?: number | null
|
||||
ride_model_id?: string | null
|
||||
ride_sub_type?: string | null
|
||||
seating_type?: string | null
|
||||
slug: string
|
||||
status?: string
|
||||
track_material?: string | null
|
||||
support_material?: string[] | null
|
||||
track_material?: string[] | null
|
||||
updated_at?: string
|
||||
view_count_30d?: number | null
|
||||
view_count_7d?: number | null
|
||||
@@ -3613,13 +3629,15 @@ export type Database = {
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
park_id?: string
|
||||
propulsion_method?: string[] | null
|
||||
review_count?: number | null
|
||||
ride_model_id?: string | null
|
||||
ride_sub_type?: string | null
|
||||
seating_type?: string | null
|
||||
slug?: string
|
||||
status?: string
|
||||
track_material?: string | null
|
||||
support_material?: string[] | null
|
||||
track_material?: string[] | null
|
||||
updated_at?: string
|
||||
view_count_30d?: number | null
|
||||
view_count_7d?: number | null
|
||||
|
||||
Reference in New Issue
Block a user