Skip to content

Commit

Permalink
0005975: Upgrading from open source to pro is missing pro tables
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Sep 7, 2023
1 parent 1e70c61 commit f877e2a
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -487,7 +487,8 @@ public void setupDatabase(boolean force) {
protected boolean hasSoftwareVersionChanged() {
Node identity = nodeService.findIdentity();
if (identity != null) {
return !Version.version().equals(identity.getSymmetricVersion()) || Version.isDevelopment(identity.getSymmetricVersion());
return !Version.version().equals(identity.getSymmetricVersion()) || !StringUtils.equals(identity.getDeploymentType(), getDeploymentType()) ||
Version.isDevelopment(identity.getSymmetricVersion());
}
return true;
}
Expand Down

0 comments on commit f877e2a

Please sign in to comment.