Skip to content

Commit

Permalink
Merge pull request #31 from FigureTechnologies/flyway-default-removal
Browse files Browse the repository at this point in the history
:ugh: should have run the tests locally first
  • Loading branch information
celloman authored Nov 2, 2022
2 parents 7167c6a + 54aecf3 commit 952994c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class MemoryMigrationsTest {
schema = "object-store-gateway",
connectionPoolSize = "1",
baselineOnMigrate = false,
repairFlywayChecksums = false,
)
DbMigrationTester(properties).removeDatabaseTables().testMigrations()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,6 @@ class PostgresqlMigrationsTest {
schema = "object-store-gateway",
connectionPoolSize = "1",
baselineOnMigrate = false,
repairFlywayChecksums = false,
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class SqliteMigrationsTest {
schema = "object-store-gateway",
connectionPoolSize = "1",
baselineOnMigrate = false,
repairFlywayChecksums = false,
)
DbMigrationTester(properties).testMigrations()
}
Expand Down
1 change: 1 addition & 0 deletions server/src/test/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ db.port=""
db.schema=object-store-gateway
db.connectionPoolSize=1
db.baselineOnMigrate=true
db.repairFlywayChecksums=false

0 comments on commit 952994c

Please sign in to comment.