Files
drp-48/supabase/migrations/20250609145614_gmaps_location.sql
2025-06-11 00:14:02 +01:00

3 lines
261 B
SQL

-- rename old colum nto building_location_old and create a new column instead of altering
alter table "public"."study_spaces" rename column "building_location" to "building_location_old";
alter table "public"."study_spaces" add column "building_location" jsonb;