This commit is contained in:
root
2019-12-19 22:22:31 +08:00
parent 5c721454fc
commit 66b771c72b
5 changed files with 33 additions and 6 deletions

View File

@ -48,12 +48,13 @@ class V2boardUpdate extends Command
$sql = preg_split("/;/", $sql);
if (!is_array($sql)) {
abort(500, '数据库文件格式有误');
}
}
$this->info('正在导入数据库请稍等...');
foreach($sql as $item) {
echo 'RUN ' . $item . "\r\n";
try {
DB::select(DB::raw($item));
} catch (\Exception $e) {}
}
$this->info('更新完毕');
}
}