Skip to content

Commit a3102c0

Browse files
authored
Updated Flyway Project Settings
In V11 of the Flyway CLI, it is necessary to configure provisioner details for the Check database. This is to ensure it uses the clean functionality alongside the latest features.
1 parent 4cca2dc commit a3102c0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

flyway.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,20 @@ provisioner = "clean"
1414

1515
[environments.Prod]
1616
url = "jdbc:sqlserver://localhost;databaseName=AutoPilotProd;encrypt=true;integratedSecurity=true;trustServerCertificate=true"
17-
displayName = "Production"
17+
displayName = "Production Database"
1818

1919
[environments.Test]
2020
url = "jdbc:sqlserver://localhost;databaseName=AutoPilotTest;encrypt=true;integratedSecurity=true;trustServerCertificate=true"
21+
displayName = "Test database"
2122

2223
[environments.Check]
2324
url = "jdbc:sqlserver://localhost;databaseName=AutoPilotCheck;encrypt=true;integratedSecurity=true;trustServerCertificate=true"
25+
displayName = "Check (Reporting) database"
26+
provisioner = "clean"
2427

2528
[environments.Build]
2629
url = "jdbc:sqlserver://localhost;databaseName=AutoPilotBuild;encrypt=true;integratedSecurity=true;trustServerCertificate=true"
30+
displayName = "Build database"
2731

2832
[flyway]
2933
locations = [ "filesystem:migrations" ]

0 commit comments

Comments
 (0)