- Fixed 'relation session_kb_associations does not exist' error in core consolidated migration. - Renamed migration directories from timestamp-based to version-based (6.0.x, 6.1.x, 6.2.x). - Reorganized migrations into dedicated feature folders (products, dashboards, learn, video). - Updated migration execution order in core/shared/utils.rs. - Moves legacy migrations to 6.0.x/6.1.x and workflow to 6.2.0.
23 lines
829 B
SQL
23 lines
829 B
SQL
DROP INDEX IF EXISTS idx_video_command_history_executed;
|
|
DROP INDEX IF EXISTS idx_video_command_history_project;
|
|
DROP TABLE IF EXISTS video_command_history;
|
|
|
|
DROP INDEX IF EXISTS idx_video_exports_status;
|
|
DROP INDEX IF EXISTS idx_video_exports_project;
|
|
DROP TABLE IF EXISTS video_exports;
|
|
|
|
DROP INDEX IF EXISTS idx_video_audio_tracks_project;
|
|
DROP TABLE IF EXISTS video_audio_tracks;
|
|
|
|
DROP INDEX IF EXISTS idx_video_layers_track;
|
|
DROP INDEX IF EXISTS idx_video_layers_project;
|
|
DROP TABLE IF EXISTS video_layers;
|
|
|
|
DROP INDEX IF EXISTS idx_video_clips_order;
|
|
DROP INDEX IF EXISTS idx_video_clips_project;
|
|
DROP TABLE IF EXISTS video_clips;
|
|
|
|
DROP INDEX IF EXISTS idx_video_projects_created_by;
|
|
DROP INDEX IF EXISTS idx_video_projects_status;
|
|
DROP INDEX IF EXISTS idx_video_projects_organization;
|
|
DROP TABLE IF EXISTS video_projects;
|