Skip to content

Commit

Permalink
Merge pull request #90 from TeamPu/fix/#70
Browse files Browse the repository at this point in the history
Flyway 데이터베이스 마이그레이션 설정 추가
  • Loading branch information
ahyeonkong authored Dec 4, 2024
2 parents ff580ff + cbdc878 commit d801a27
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ dependencies {
implementation 'org.flywaydb:flyway-mysql'
}

flyway {
url = 'jdbc:mysql://${DB_HOST}:3306/teampu'
user = 'root'
password = '${DB_PASSWORD}'
locations = ['classpath:db/migration']
}

test {
finalizedBy jacocoTestReport, jacocoTestCoverageVerification
useJUnitPlatform()
Expand Down

0 comments on commit d801a27

Please sign in to comment.