From ca595e9c8650fc95113f2d799281001dba620b8a Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Thu, 30 Jun 2022 16:24:41 +0800 Subject: [PATCH] * Add the sql confirm. --- module/upgrade/model.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/module/upgrade/model.php b/module/upgrade/model.php index 4c5d031e38..eb9f1e3bdb 100644 --- a/module/upgrade/model.php +++ b/module/upgrade/model.php @@ -965,7 +965,10 @@ class upgradeModel extends model case '17_0_beta1': $confirmContent .= file_get_contents($this->getUpgradeFile('17.0.beta1')); case '17_0_beta2': $confirmContent .= file_get_contents($this->getUpgradeFile('17.0.beta2')); case '17_0': $confirmContent .= file_get_contents($this->getUpgradeFile('17.0')); - case '17_1': $confirmContent .= file_get_contents($this->getUpgradeFile('17.1')); + case '17_1': + $confirmContent .= file_get_contents($this->getUpgradeFile('17.1')); + $xuanxuanSql = $this->app->getAppRoot() . 'db' . DS . 'upgradexuanxuan5.6.sql'; + $confirmContent .= file_get_contents($xuanxuanSql); } return $confirmContent;