27 lines
693 B
MySQL
27 lines
693 B
MySQL
|
|
-- Drop Scheduled Meetings table
|
||
|
|
DROP TABLE IF EXISTS scheduled_meetings;
|
||
|
|
|
||
|
|
-- Drop Meeting Chat Messages table
|
||
|
|
DROP TABLE IF EXISTS meeting_chat_messages;
|
||
|
|
|
||
|
|
-- Drop Whiteboard Export History table
|
||
|
|
DROP TABLE IF EXISTS whiteboard_exports;
|
||
|
|
|
||
|
|
-- Drop Whiteboard Elements table
|
||
|
|
DROP TABLE IF EXISTS whiteboard_elements;
|
||
|
|
|
||
|
|
-- Drop Meeting Whiteboards table
|
||
|
|
DROP TABLE IF EXISTS meeting_whiteboards;
|
||
|
|
|
||
|
|
-- Drop Meeting Transcriptions table
|
||
|
|
DROP TABLE IF EXISTS meeting_transcriptions;
|
||
|
|
|
||
|
|
-- Drop Meeting Recordings table
|
||
|
|
DROP TABLE IF EXISTS meeting_recordings;
|
||
|
|
|
||
|
|
-- Drop Meeting Participants table
|
||
|
|
DROP TABLE IF EXISTS meeting_participants;
|
||
|
|
|
||
|
|
-- Drop Meeting Rooms table
|
||
|
|
DROP TABLE IF EXISTS meeting_rooms;
|