feat: 集成Flyway数据库版本管理,迁移SQL文件到db/migration目录
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Agent
2026-03-27 14:40:44 +00:00
parent da2da5fe75
commit f04754c325
5 changed files with 18 additions and 6 deletions

10
pom.xml
View File

@@ -97,6 +97,16 @@
<version>2.0.43</version>
</dependency>
<!-- Flyway 数据库版本管理 -->
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-postgresql</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>