modify upgrade process

This commit is contained in:
Shinsuke Sugaya 2017-07-27 21:55:57 +09:00
parent cb87b063d3
commit 20bc8a42bb

View file

@ -152,6 +152,7 @@ public class AdminUpgradeAction extends FessAdminAction {
if (VERSION_11_0.equals(form.targetVersion)) {
try {
upgradeFrom11_0();
upgradeFrom11_1();
upgradeFromAll();
saveInfo(messages -> messages.addSuccessStartedDataUpdate(GLOBAL));
@ -163,7 +164,6 @@ public class AdminUpgradeAction extends FessAdminAction {
}
} else if (VERSION_11_1.equals(form.targetVersion)) {
try {
upgradeFrom11_0();
upgradeFrom11_1();
upgradeFromAll();
@ -266,4 +266,4 @@ public class AdminUpgradeAction extends FessAdminAction {
}
});
}
}
}