chore: rename address to building location

This commit is contained in:
2025-06-04 23:35:02 +01:00
parent c1de092525
commit b49f937dcb
5 changed files with 12 additions and 11 deletions

View File

@@ -65,7 +65,7 @@ export type Database = {
}
study_spaces: {
Row: {
building_address: string | null
building_location: string | null
created_at: string | null
description: string | null
id: string
@@ -73,7 +73,7 @@ export type Database = {
updated_at: string | null
}
Insert: {
building_address?: string | null
building_location?: string | null
created_at?: string | null
description?: string | null
id?: string
@@ -81,7 +81,7 @@ export type Database = {
updated_at?: string | null
}
Update: {
building_address?: string | null
building_location?: string | null
created_at?: string | null
description?: string | null
id?: string