3 lines
261 B
SQL
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; |