Skip to content

Commit

Permalink
Fix db versions
Browse files Browse the repository at this point in the history
  • Loading branch information
s-tschne committed Feb 24, 2023
1 parent 16a540d commit f33442d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ class SystemModel(override protected[this] val connection: DatabaseConnection) e
setupVersion(readSchemaFile("schema_v30"), 30),
setupVersion(readSchemaFile("schema_v31"), 31),
setupVersion(readSchemaFile("schema_v32"), 32),
setupVersion(readSchemaFile("schema_v34"), 33)
setupVersion(readSchemaFile("schema_v33"), 33),
setupVersion(readSchemaFile("schema_v34"), 34)
)

private def readSchemaFile(name: String): String = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ class SystemControllerTest extends TableauxTestBase {
okTest {
val expectedJson = Json.obj(
"database" -> Json.obj(
"current" -> 33,
"specification" -> 33
"current" -> 34,
"specification" -> 34
)
)

Expand Down

0 comments on commit f33442d

Please sign in to comment.