- 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
30 lines
1.1 KiB
SQL
30 lines
1.1 KiB
SQL
DROP INDEX IF EXISTS idx_ticket_tags_org_name;
|
|
DROP INDEX IF EXISTS idx_ticket_tags_org_bot;
|
|
|
|
DROP INDEX IF EXISTS idx_ticket_categories_parent;
|
|
DROP INDEX IF EXISTS idx_ticket_categories_org_bot;
|
|
|
|
DROP INDEX IF EXISTS idx_ticket_canned_shortcut;
|
|
DROP INDEX IF EXISTS idx_ticket_canned_org_bot;
|
|
|
|
DROP INDEX IF EXISTS idx_ticket_sla_priority;
|
|
DROP INDEX IF EXISTS idx_ticket_sla_org_bot;
|
|
|
|
DROP INDEX IF EXISTS idx_ticket_comments_created;
|
|
DROP INDEX IF EXISTS idx_ticket_comments_ticket;
|
|
|
|
DROP INDEX IF EXISTS idx_support_tickets_org_number;
|
|
DROP INDEX IF EXISTS idx_support_tickets_number;
|
|
DROP INDEX IF EXISTS idx_support_tickets_created;
|
|
DROP INDEX IF EXISTS idx_support_tickets_requester;
|
|
DROP INDEX IF EXISTS idx_support_tickets_assignee;
|
|
DROP INDEX IF EXISTS idx_support_tickets_priority;
|
|
DROP INDEX IF EXISTS idx_support_tickets_status;
|
|
DROP INDEX IF EXISTS idx_support_tickets_org_bot;
|
|
|
|
DROP TABLE IF EXISTS ticket_tags;
|
|
DROP TABLE IF EXISTS ticket_categories;
|
|
DROP TABLE IF EXISTS ticket_canned_responses;
|
|
DROP TABLE IF EXISTS ticket_sla_policies;
|
|
DROP TABLE IF EXISTS ticket_comments;
|
|
DROP TABLE IF EXISTS support_tickets;
|