fix: Added migrations for addition of direction column to study_spaces

This commit is contained in:
TadiosT
2025-06-13 14:42:05 +01:00
parent e96aeb2cfc
commit 958e6f61a4
2 changed files with 2 additions and 1 deletions

View File

@@ -173,7 +173,7 @@ export type Database = {
building_location_old?: string | null
created_at?: string | null
description?: string | null
directions: string
directions?: string
id?: string
location?: string | null
power?: string

View File

@@ -0,0 +1 @@
ALTER TABLE study_spaces ADD COLUMN IF NOT EXISTS directions text;