mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 09:11:13 -05:00
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:
@@ -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: []
|
||||
|
||||
Reference in New Issue
Block a user