feat: Add street address to locations

Adds a street_address column to the locations table and updates the LocationSearch component to capture, store, and display full street addresses. This includes database migration, interface updates, and formatter logic.
This commit is contained in:
gpt-engineer-app[bot]
2025-11-06 13:51:40 +00:00
parent c1683f9b02
commit 98fbc94476
5 changed files with 128 additions and 9 deletions

View File

@@ -1615,6 +1615,7 @@ export type Database = {
name: string
postal_code: string | null
state_province: string | null
street_address: string | null
timezone: string | null
}
Insert: {
@@ -1627,6 +1628,7 @@ export type Database = {
name: string
postal_code?: string | null
state_province?: string | null
street_address?: string | null
timezone?: string | null
}
Update: {
@@ -1639,6 +1641,7 @@ export type Database = {
name?: string
postal_code?: string | null
state_province?: string | null
street_address?: string | null
timezone?: string | null
}
Relationships: []