Files
geo/server/migrations/20260403100000_create_knowledge_tables.down.sql
T
root 446f865cdf feat: add knowledge management functionality with CRUD operations and database schema
- Implemented KnowledgeHandler for managing knowledge groups and items, including listing, creating, updating, and deleting operations.
- Added database migration scripts to create necessary tables for knowledge management, including knowledge_groups, knowledge_items, knowledge_parse_tasks, and knowledge_chunks_meta.
- Introduced prompt_rule_knowledge_groups table to associate prompt rules with knowledge groups.
2026-04-05 17:14:13 +08:00

6 lines
216 B
SQL

DROP TABLE IF EXISTS prompt_rule_knowledge_groups;
DROP TABLE IF EXISTS knowledge_chunks_meta;
DROP TABLE IF EXISTS knowledge_parse_tasks;
DROP TABLE IF EXISTS knowledge_items;
DROP TABLE IF EXISTS knowledge_groups;