mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 14:31:13 -05:00
feat: Add track material column and filtering
This commit is contained in:
@@ -2487,6 +2487,7 @@ export type Database = {
|
||||
slug: string
|
||||
status: string
|
||||
submission_id: string
|
||||
track_material: string | null
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
@@ -2525,6 +2526,7 @@ export type Database = {
|
||||
slug: string
|
||||
status?: string
|
||||
submission_id: string
|
||||
track_material?: string | null
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
@@ -2563,6 +2565,7 @@ export type Database = {
|
||||
slug?: string
|
||||
status?: string
|
||||
submission_id?: string
|
||||
track_material?: string | null
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: [
|
||||
@@ -2656,6 +2659,7 @@ export type Database = {
|
||||
slug: string
|
||||
status: string
|
||||
submission_id: string | null
|
||||
track_material: string | null
|
||||
version_id: string
|
||||
version_number: number
|
||||
}
|
||||
@@ -2695,6 +2699,7 @@ export type Database = {
|
||||
slug: string
|
||||
status: string
|
||||
submission_id?: string | null
|
||||
track_material?: string | null
|
||||
version_id?: string
|
||||
version_number: number
|
||||
}
|
||||
@@ -2734,6 +2739,7 @@ export type Database = {
|
||||
slug?: string
|
||||
status?: string
|
||||
submission_id?: string | null
|
||||
track_material?: string | null
|
||||
version_id?: string
|
||||
version_number?: number
|
||||
}
|
||||
@@ -2827,6 +2833,7 @@ export type Database = {
|
||||
seating_type: string | null
|
||||
slug: string
|
||||
status: string
|
||||
track_material: string | null
|
||||
updated_at: string
|
||||
view_count_30d: number | null
|
||||
view_count_7d: number | null
|
||||
@@ -2869,6 +2876,7 @@ export type Database = {
|
||||
seating_type?: string | null
|
||||
slug: string
|
||||
status?: string
|
||||
track_material?: string | null
|
||||
updated_at?: string
|
||||
view_count_30d?: number | null
|
||||
view_count_7d?: number | null
|
||||
@@ -2911,6 +2919,7 @@ export type Database = {
|
||||
seating_type?: string | null
|
||||
slug?: string
|
||||
status?: string
|
||||
track_material?: string | null
|
||||
updated_at?: string
|
||||
view_count_30d?: number | null
|
||||
view_count_7d?: number | null
|
||||
|
||||
Reference in New Issue
Block a user