mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 15:31:13 -05:00
Refactor user lists
This commit is contained in:
@@ -2069,6 +2069,47 @@ export type Database = {
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
user_top_list_items: {
|
||||
Row: {
|
||||
created_at: string
|
||||
entity_id: string
|
||||
entity_type: string
|
||||
id: string
|
||||
list_id: string
|
||||
notes: string | null
|
||||
position: number
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
entity_id: string
|
||||
entity_type: string
|
||||
id?: string
|
||||
list_id: string
|
||||
notes?: string | null
|
||||
position: number
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
entity_id?: string
|
||||
entity_type?: string
|
||||
id?: string
|
||||
list_id?: string
|
||||
notes?: string | null
|
||||
position?: number
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "user_top_list_items_list_id_fkey"
|
||||
columns: ["list_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "user_top_lists"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
user_top_lists: {
|
||||
Row: {
|
||||
created_at: string
|
||||
@@ -2186,6 +2227,10 @@ export type Database = {
|
||||
Args: Record<PropertyKey, never>
|
||||
Returns: undefined
|
||||
}
|
||||
migrate_user_list_items: {
|
||||
Args: Record<PropertyKey, never>
|
||||
Returns: undefined
|
||||
}
|
||||
update_company_ratings: {
|
||||
Args: { target_company_id: string }
|
||||
Returns: undefined
|
||||
|
||||
Reference in New Issue
Block a user