Skip to content

Commit

Permalink
Fix DB schema version for 4.2-SNAPSHOT
Browse files Browse the repository at this point in the history
Until there are any DB schema changes we consider midPoint 4.2-SNAPSHOT
to use DB schema version of 4.0.
  • Loading branch information
mederly committed Apr 14, 2020
1 parent 12c3c9f commit f2c1d31
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -64,6 +64,7 @@ class SchemaActionComputer {
static {
DATABASE_VERSION_FROM_MIDPOINT_VERSION = new HashMap<>();
DATABASE_VERSION_FROM_MIDPOINT_VERSION.put("3.7.2", "3.7.2");
DATABASE_VERSION_FROM_MIDPOINT_VERSION.put("4.2-SNAPSHOT", "4.0"); // until there are some changes in DB schema
}

/**
Expand Down

0 comments on commit f2c1d31

Please sign in to comment.