mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 14:31:13 -05:00
Approve database migration
This commit is contained in:
@@ -84,6 +84,8 @@ export type Database = {
|
||||
company_type: string
|
||||
created_at: string
|
||||
description: string | null
|
||||
founded_date: string | null
|
||||
founded_date_precision: string | null
|
||||
founded_year: number | null
|
||||
headquarters_location: string | null
|
||||
id: string
|
||||
@@ -107,6 +109,8 @@ export type Database = {
|
||||
company_type: string
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
founded_date?: string | null
|
||||
founded_date_precision?: string | null
|
||||
founded_year?: number | null
|
||||
headquarters_location?: string | null
|
||||
id?: string
|
||||
@@ -130,6 +134,8 @@ export type Database = {
|
||||
company_type?: string
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
founded_date?: string | null
|
||||
founded_date_precision?: string | null
|
||||
founded_year?: number | null
|
||||
headquarters_location?: string | null
|
||||
id?: string
|
||||
@@ -155,6 +161,8 @@ export type Database = {
|
||||
company_type: string
|
||||
created_at: string
|
||||
description: string | null
|
||||
founded_date: string | null
|
||||
founded_date_precision: string | null
|
||||
founded_year: number | null
|
||||
headquarters_location: string | null
|
||||
id: string
|
||||
@@ -174,6 +182,8 @@ export type Database = {
|
||||
company_type: string
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
founded_date?: string | null
|
||||
founded_date_precision?: string | null
|
||||
founded_year?: number | null
|
||||
headquarters_location?: string | null
|
||||
id?: string
|
||||
@@ -193,6 +203,8 @@ export type Database = {
|
||||
company_type?: string
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
founded_date?: string | null
|
||||
founded_date_precision?: string | null
|
||||
founded_year?: number | null
|
||||
headquarters_location?: string | null
|
||||
id?: string
|
||||
@@ -501,7 +513,9 @@ export type Database = {
|
||||
location_id: string | null
|
||||
name: string
|
||||
operated_from: string | null
|
||||
operated_from_precision: string | null
|
||||
operated_until: string | null
|
||||
operated_until_precision: string | null
|
||||
original_park_id: string | null
|
||||
slug: string
|
||||
successor_park_id: string | null
|
||||
@@ -514,7 +528,9 @@ export type Database = {
|
||||
location_id?: string | null
|
||||
name: string
|
||||
operated_from?: string | null
|
||||
operated_from_precision?: string | null
|
||||
operated_until?: string | null
|
||||
operated_until_precision?: string | null
|
||||
original_park_id?: string | null
|
||||
slug: string
|
||||
successor_park_id?: string | null
|
||||
@@ -527,7 +543,9 @@ export type Database = {
|
||||
location_id?: string | null
|
||||
name?: string
|
||||
operated_from?: string | null
|
||||
operated_from_precision?: string | null
|
||||
operated_until?: string | null
|
||||
operated_until_precision?: string | null
|
||||
original_park_id?: string | null
|
||||
slug?: string
|
||||
successor_park_id?: string | null
|
||||
@@ -563,7 +581,9 @@ export type Database = {
|
||||
id: string
|
||||
name: string
|
||||
operated_from: string | null
|
||||
operated_from_precision: string | null
|
||||
operated_until: string | null
|
||||
operated_until_precision: string | null
|
||||
original_ride_id: string | null
|
||||
park_id: string | null
|
||||
relocated_to_park_id: string | null
|
||||
@@ -577,7 +597,9 @@ export type Database = {
|
||||
id?: string
|
||||
name: string
|
||||
operated_from?: string | null
|
||||
operated_from_precision?: string | null
|
||||
operated_until?: string | null
|
||||
operated_until_precision?: string | null
|
||||
original_ride_id?: string | null
|
||||
park_id?: string | null
|
||||
relocated_to_park_id?: string | null
|
||||
@@ -591,7 +613,9 @@ export type Database = {
|
||||
id?: string
|
||||
name?: string
|
||||
operated_from?: string | null
|
||||
operated_from_precision?: string | null
|
||||
operated_until?: string | null
|
||||
operated_until_precision?: string | null
|
||||
original_ride_id?: string | null
|
||||
park_id?: string | null
|
||||
relocated_to_park_id?: string | null
|
||||
@@ -891,6 +915,7 @@ export type Database = {
|
||||
card_image_id: string | null
|
||||
card_image_url: string | null
|
||||
closing_date: string | null
|
||||
closing_date_precision: string | null
|
||||
created_at: string
|
||||
description: string | null
|
||||
email: string | null
|
||||
@@ -898,6 +923,7 @@ export type Database = {
|
||||
location_id: string | null
|
||||
name: string
|
||||
opening_date: string | null
|
||||
opening_date_precision: string | null
|
||||
operator_id: string | null
|
||||
park_type: string
|
||||
phone: string | null
|
||||
@@ -914,6 +940,7 @@ export type Database = {
|
||||
card_image_id?: string | null
|
||||
card_image_url?: string | null
|
||||
closing_date?: string | null
|
||||
closing_date_precision?: string | null
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
email?: string | null
|
||||
@@ -921,6 +948,7 @@ export type Database = {
|
||||
location_id?: string | null
|
||||
name: string
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
operator_id?: string | null
|
||||
park_type: string
|
||||
phone?: string | null
|
||||
@@ -937,6 +965,7 @@ export type Database = {
|
||||
card_image_id?: string | null
|
||||
card_image_url?: string | null
|
||||
closing_date?: string | null
|
||||
closing_date_precision?: string | null
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
email?: string | null
|
||||
@@ -944,6 +973,7 @@ export type Database = {
|
||||
location_id?: string | null
|
||||
name?: string
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
operator_id?: string | null
|
||||
park_type?: string
|
||||
phone?: string | null
|
||||
@@ -979,6 +1009,7 @@ export type Database = {
|
||||
card_image_id: string | null
|
||||
card_image_url: string | null
|
||||
closing_date: string | null
|
||||
closing_date_precision: string | null
|
||||
coaster_count: number | null
|
||||
created_at: string
|
||||
description: string | null
|
||||
@@ -987,6 +1018,7 @@ export type Database = {
|
||||
location_id: string | null
|
||||
name: string
|
||||
opening_date: string | null
|
||||
opening_date_precision: string | null
|
||||
operator_id: string | null
|
||||
park_type: string
|
||||
phone: string | null
|
||||
@@ -1008,6 +1040,7 @@ export type Database = {
|
||||
card_image_id?: string | null
|
||||
card_image_url?: string | null
|
||||
closing_date?: string | null
|
||||
closing_date_precision?: string | null
|
||||
coaster_count?: number | null
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
@@ -1016,6 +1049,7 @@ export type Database = {
|
||||
location_id?: string | null
|
||||
name: string
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
operator_id?: string | null
|
||||
park_type: string
|
||||
phone?: string | null
|
||||
@@ -1037,6 +1071,7 @@ export type Database = {
|
||||
card_image_id?: string | null
|
||||
card_image_url?: string | null
|
||||
closing_date?: string | null
|
||||
closing_date_precision?: string | null
|
||||
coaster_count?: number | null
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
@@ -1045,6 +1080,7 @@ export type Database = {
|
||||
location_id?: string | null
|
||||
name?: string
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
operator_id?: string | null
|
||||
park_type?: string
|
||||
phone?: string | null
|
||||
@@ -1090,6 +1126,7 @@ export type Database = {
|
||||
cloudflare_image_url: string
|
||||
created_at: string
|
||||
date_taken: string | null
|
||||
date_taken_precision: string | null
|
||||
file_size: number | null
|
||||
filename: string | null
|
||||
id: string
|
||||
@@ -1104,6 +1141,7 @@ export type Database = {
|
||||
cloudflare_image_url: string
|
||||
created_at?: string
|
||||
date_taken?: string | null
|
||||
date_taken_precision?: string | null
|
||||
file_size?: number | null
|
||||
filename?: string | null
|
||||
id?: string
|
||||
@@ -1118,6 +1156,7 @@ export type Database = {
|
||||
cloudflare_image_url?: string
|
||||
created_at?: string
|
||||
date_taken?: string | null
|
||||
date_taken_precision?: string | null
|
||||
file_size?: number | null
|
||||
filename?: string | null
|
||||
id?: string
|
||||
@@ -1186,6 +1225,7 @@ export type Database = {
|
||||
cloudflare_image_url: string
|
||||
created_at: string
|
||||
date_taken: string | null
|
||||
date_taken_precision: string | null
|
||||
entity_id: string
|
||||
entity_type: string
|
||||
id: string
|
||||
@@ -1205,6 +1245,7 @@ export type Database = {
|
||||
cloudflare_image_url: string
|
||||
created_at?: string
|
||||
date_taken?: string | null
|
||||
date_taken_precision?: string | null
|
||||
entity_id: string
|
||||
entity_type: string
|
||||
id?: string
|
||||
@@ -1224,6 +1265,7 @@ export type Database = {
|
||||
cloudflare_image_url?: string
|
||||
created_at?: string
|
||||
date_taken?: string | null
|
||||
date_taken_precision?: string | null
|
||||
entity_id?: string
|
||||
entity_type?: string
|
||||
id?: string
|
||||
@@ -1715,6 +1757,7 @@ export type Database = {
|
||||
Row: {
|
||||
created_at: string
|
||||
date_changed: string | null
|
||||
date_changed_precision: string | null
|
||||
former_name: string
|
||||
from_year: number | null
|
||||
id: string
|
||||
@@ -1726,6 +1769,7 @@ export type Database = {
|
||||
Insert: {
|
||||
created_at?: string
|
||||
date_changed?: string | null
|
||||
date_changed_precision?: string | null
|
||||
former_name: string
|
||||
from_year?: number | null
|
||||
id?: string
|
||||
@@ -1737,6 +1781,7 @@ export type Database = {
|
||||
Update: {
|
||||
created_at?: string
|
||||
date_changed?: string | null
|
||||
date_changed_precision?: string | null
|
||||
former_name?: string
|
||||
from_year?: number | null
|
||||
id?: string
|
||||
@@ -1797,6 +1842,7 @@ export type Database = {
|
||||
Row: {
|
||||
created_at: string
|
||||
date_changed: string | null
|
||||
date_changed_precision: string | null
|
||||
former_name: string
|
||||
id: string
|
||||
order_index: number | null
|
||||
@@ -1806,6 +1852,7 @@ export type Database = {
|
||||
Insert: {
|
||||
created_at?: string
|
||||
date_changed?: string | null
|
||||
date_changed_precision?: string | null
|
||||
former_name: string
|
||||
id?: string
|
||||
order_index?: number | null
|
||||
@@ -1815,6 +1862,7 @@ export type Database = {
|
||||
Update: {
|
||||
created_at?: string
|
||||
date_changed?: string | null
|
||||
date_changed_precision?: string | null
|
||||
former_name?: string
|
||||
id?: string
|
||||
order_index?: number | null
|
||||
@@ -1885,6 +1933,7 @@ export type Database = {
|
||||
card_image_url: string | null
|
||||
category: string
|
||||
closing_date: string | null
|
||||
closing_date_precision: string | null
|
||||
coaster_type: string | null
|
||||
created_at: string
|
||||
description: string | null
|
||||
@@ -1903,6 +1952,7 @@ export type Database = {
|
||||
max_speed_kmh: number | null
|
||||
name: string
|
||||
opening_date: string | null
|
||||
opening_date_precision: string | null
|
||||
park_id: string | null
|
||||
ride_model_id: string | null
|
||||
ride_sub_type: string | null
|
||||
@@ -1921,6 +1971,7 @@ export type Database = {
|
||||
card_image_url?: string | null
|
||||
category: string
|
||||
closing_date?: string | null
|
||||
closing_date_precision?: string | null
|
||||
coaster_type?: string | null
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
@@ -1939,6 +1990,7 @@ export type Database = {
|
||||
max_speed_kmh?: number | null
|
||||
name: string
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
park_id?: string | null
|
||||
ride_model_id?: string | null
|
||||
ride_sub_type?: string | null
|
||||
@@ -1957,6 +2009,7 @@ export type Database = {
|
||||
card_image_url?: string | null
|
||||
category?: string
|
||||
closing_date?: string | null
|
||||
closing_date_precision?: string | null
|
||||
coaster_type?: string | null
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
@@ -1975,6 +2028,7 @@ export type Database = {
|
||||
max_speed_kmh?: number | null
|
||||
name?: string
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
park_id?: string | null
|
||||
ride_model_id?: string | null
|
||||
ride_sub_type?: string | null
|
||||
@@ -2049,6 +2103,7 @@ export type Database = {
|
||||
card_image_url: string | null
|
||||
category: string
|
||||
closing_date: string | null
|
||||
closing_date_precision: string | null
|
||||
coaster_type: string | null
|
||||
created_at: string
|
||||
description: string | null
|
||||
@@ -2067,6 +2122,7 @@ export type Database = {
|
||||
max_speed_kmh: number | null
|
||||
name: string
|
||||
opening_date: string | null
|
||||
opening_date_precision: string | null
|
||||
park_id: string
|
||||
review_count: number | null
|
||||
ride_model_id: string | null
|
||||
@@ -2089,6 +2145,7 @@ export type Database = {
|
||||
card_image_url?: string | null
|
||||
category: string
|
||||
closing_date?: string | null
|
||||
closing_date_precision?: string | null
|
||||
coaster_type?: string | null
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
@@ -2107,6 +2164,7 @@ export type Database = {
|
||||
max_speed_kmh?: number | null
|
||||
name: string
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
park_id: string
|
||||
review_count?: number | null
|
||||
ride_model_id?: string | null
|
||||
@@ -2129,6 +2187,7 @@ export type Database = {
|
||||
card_image_url?: string | null
|
||||
category?: string
|
||||
closing_date?: string | null
|
||||
closing_date_precision?: string | null
|
||||
coaster_type?: string | null
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
@@ -2147,6 +2206,7 @@ export type Database = {
|
||||
max_speed_kmh?: number | null
|
||||
name?: string
|
||||
opening_date?: string | null
|
||||
opening_date_precision?: string | null
|
||||
park_id?: string
|
||||
review_count?: number | null
|
||||
ride_model_id?: string | null
|
||||
|
||||
Reference in New Issue
Block a user