* Add the sql confirm.

This commit is contained in:
hufangzhou
2022-06-30 16:24:41 +08:00
parent d09fc4e65f
commit ca595e9c86
+4 -1
View File
@@ -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;