engine/schema: Use same upgrade path as 4.15.1-4.16.0 as for 4.15.2 (#5385)

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2021-08-31 12:35:47 +05:30 committed by GitHub
parent 3ddcf85876
commit 5837f9016e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -199,6 +199,7 @@ public class DatabaseUpgradeChecker implements SystemIntegrityChecker {
.next("4.14.1.0", new Upgrade41400to41500())
.next("4.15.0.0", new Upgrade41500to41510())
.next("4.15.1.0", new Upgrade41510to41600())
.next("4.15.2.0", new Upgrade41510to41600())
.build();
}