- Add comprehensive documentation in botbook/ with 12 chapters - Add botapp/ Tauri desktop application - Add botdevice/ IoT device support - Add botlib/ shared library crate - Add botmodels/ Python ML models service - Add botplugin/ browser extension - Add botserver/ reorganized server code - Add bottemplates/ bot templates - Add bottest/ integration tests - Add botui/ web UI server - Add CI/CD workflows in .forgejo/workflows/ - Add AGENTS.md and PROD.md documentation - Add dependency management scripts (DEPENDENCIES.sh/ps1) - Remove legacy src/ structure and migrations - Clean up temporary and backup files
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;
|