mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 13:11:14 -05:00
Fix ride model versioning
This commit is contained in:
@@ -2777,6 +2777,10 @@ export type Database = {
|
||||
}
|
||||
ride_model_versions: {
|
||||
Row: {
|
||||
banner_image_id: string | null
|
||||
banner_image_url: string | null
|
||||
card_image_id: string | null
|
||||
card_image_url: string | null
|
||||
category: string
|
||||
change_reason: string | null
|
||||
change_type: Database["public"]["Enums"]["version_change_type"]
|
||||
@@ -2787,12 +2791,17 @@ export type Database = {
|
||||
manufacturer_id: string | null
|
||||
name: string
|
||||
ride_model_id: string
|
||||
ride_type: string | null
|
||||
slug: string
|
||||
submission_id: string | null
|
||||
version_id: string
|
||||
version_number: number
|
||||
}
|
||||
Insert: {
|
||||
banner_image_id?: string | null
|
||||
banner_image_url?: string | null
|
||||
card_image_id?: string | null
|
||||
card_image_url?: string | null
|
||||
category: string
|
||||
change_reason?: string | null
|
||||
change_type?: Database["public"]["Enums"]["version_change_type"]
|
||||
@@ -2803,12 +2812,17 @@ export type Database = {
|
||||
manufacturer_id?: string | null
|
||||
name: string
|
||||
ride_model_id: string
|
||||
ride_type?: string | null
|
||||
slug: string
|
||||
submission_id?: string | null
|
||||
version_id?: string
|
||||
version_number: number
|
||||
}
|
||||
Update: {
|
||||
banner_image_id?: string | null
|
||||
banner_image_url?: string | null
|
||||
card_image_id?: string | null
|
||||
card_image_url?: string | null
|
||||
category?: string
|
||||
change_reason?: string | null
|
||||
change_type?: Database["public"]["Enums"]["version_change_type"]
|
||||
@@ -2819,6 +2833,7 @@ export type Database = {
|
||||
manufacturer_id?: string | null
|
||||
name?: string
|
||||
ride_model_id?: string
|
||||
ride_type?: string | null
|
||||
slug?: string
|
||||
submission_id?: string | null
|
||||
version_id?: string
|
||||
|
||||
Reference in New Issue
Block a user