- 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
12 lines
506 B
SQL
12 lines
506 B
SQL
DROP INDEX IF EXISTS idx_consent_history_consent;
|
|
DROP INDEX IF EXISTS idx_consent_history_created;
|
|
DROP INDEX IF EXISTS idx_cookie_consents_user;
|
|
DROP INDEX IF EXISTS idx_cookie_consents_session;
|
|
DROP INDEX IF EXISTS idx_cookie_consents_org_bot;
|
|
DROP INDEX IF EXISTS idx_legal_documents_org_bot;
|
|
DROP INDEX IF EXISTS idx_legal_documents_slug;
|
|
DROP INDEX IF EXISTS idx_legal_documents_type;
|
|
|
|
DROP TABLE IF EXISTS consent_history;
|
|
DROP TABLE IF EXISTS cookie_consents;
|
|
DROP TABLE IF EXISTS legal_documents;
|