refactor: cleanup skeleton, setup supabase properly

This commit is contained in:
2025-06-04 11:21:54 +01:00
parent 8b09523b21
commit b4f2b60bec
14 changed files with 5545 additions and 5384 deletions

12
src/lib/database.d.ts vendored
View File

@@ -65,21 +65,27 @@ export type Database = {
}
study_spaces: {
Row: {
building_address: string | null
created_at: string | null
description: string | null
id: string
title: string
location: string | null
updated_at: string | null
}
Insert: {
building_address?: string | null
created_at?: string | null
description?: string | null
id?: string
title: string
location?: string | null
updated_at?: string | null
}
Update: {
building_address?: string | null
created_at?: string | null
description?: string | null
id?: string
title?: string
location?: string | null
updated_at?: string | null
}
Relationships: []