From 855acb948ca678adb3730b41d3876e3024b5a039 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Wed, 14 Feb 2024 14:30:48 -0700 Subject: [PATCH] drop columns (#7742) Blocked on: #7741 Release Notes: - N/A --- .../migrations/20240213200201_remove_unused_room_columns.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 crates/collab/migrations/20240213200201_remove_unused_room_columns.sql diff --git a/crates/collab/migrations/20240213200201_remove_unused_room_columns.sql b/crates/collab/migrations/20240213200201_remove_unused_room_columns.sql new file mode 100644 index 0000000000..dc4897af48 --- /dev/null +++ b/crates/collab/migrations/20240213200201_remove_unused_room_columns.sql @@ -0,0 +1,4 @@ +-- Add migration script here +ALTER TABLE rooms DROP COLUMN enviroment; +ALTER TABLE rooms DROP COLUMN environment; +ALTER TABLE room_participants DROP COLUMN in_call;