Refactor: Implement JSONB elimination plan

This commit is contained in:
gpt-engineer-app[bot]
2025-10-17 13:32:29 +00:00
parent ab719e3359
commit 2928ad0f4c
3 changed files with 92 additions and 0 deletions

View File

@@ -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