kindergarten_java/lesingle-edu-reading-platform-backend/clean-flyway-v41.sql
En 40589f59e7 chore: 重命名项目目录
前后端目录重命名:
- reading-platform-java/ → lesingle-edu-reading-platform-backend/
- reading-platform-frontend/ → lesingle-edu-reading-platform-frontend/

更新相关文件:
- 所有 shell 脚本中的目录引用
- pom.xml 和 application.yml 中的项目名称
- package.json 中的项目名称
- .claude/CLAUDE.md 中的路径引用
- README 文档中的路径引用
2026-03-26 11:31:47 +08:00

15 lines
488 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- =====================================================
-- 清理 Flyway 失败的 V41 迁移记录
-- 执行时间2026-03-19
-- 说明:在执行 V41 迁移脚本之前,先清理失败的迁移记录
-- =====================================================
-- 删除 V41 的失败记录
DELETE FROM flyway_schema_history WHERE version = '41';
-- 验证清理结果
SELECT version, description, state, installed_on
FROM flyway_schema_history
ORDER BY installed_on DESC
LIMIT 10;