71a6bc4aa4
- 分类管理:支持分类的增删改查 - 单词管理:支持单词的增删改查,包含音标、释义、例句等字段 - 更新 README 项目说明 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
5 lines
142 B
SQL
5 lines
142 B
SQL
DROP INDEX IF EXISTS idx_words_word;
|
|
DROP INDEX IF EXISTS idx_words_category_id;
|
|
DROP TABLE IF EXISTS words;
|
|
DROP TABLE IF EXISTS categories;
|