Learn Module: - All 9 handlers now use AuthenticatedUser extractor Security: - validate_session_sync reads roles from SESSION_CACHE AutoTask: - get_task_logs reads from manifest with status logs - store_compiled_intent saves to cache and database Face API: - AWS Rekognition, OpenCV, InsightFace implementations - Detection, verification, analysis methods Other fixes: - Calendar/task integration database queries - Recording database methods - Analytics insights trends - Email/folder monitoring mock data
26 lines
693 B
SQL
26 lines
693 B
SQL
-- 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;
|