mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 16:11:12 -05:00
Refactor: Implement JSONB elimination plan
This commit is contained in:
@@ -876,6 +876,47 @@ export type Database = {
|
||||
},
|
||||
]
|
||||
}
|
||||
list_items: {
|
||||
Row: {
|
||||
created_at: string | null
|
||||
entity_id: string
|
||||
entity_type: string
|
||||
id: string
|
||||
list_id: string
|
||||
notes: string | null
|
||||
position: number
|
||||
updated_at: string | null
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string | null
|
||||
entity_id: string
|
||||
entity_type: string
|
||||
id?: string
|
||||
list_id: string
|
||||
notes?: string | null
|
||||
position: number
|
||||
updated_at?: string | null
|
||||
}
|
||||
Update: {
|
||||
created_at?: string | null
|
||||
entity_id?: string
|
||||
entity_type?: string
|
||||
id?: string
|
||||
list_id?: string
|
||||
notes?: string | null
|
||||
position?: number
|
||||
updated_at?: string | null
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "list_items_list_id_fkey"
|
||||
columns: ["list_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "user_top_lists"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
locations: {
|
||||
Row: {
|
||||
city: string | null
|
||||
|
||||
Reference in New Issue
Block a user