info('正在导入数据库请稍等...'); Artisan::call("migrate", ['--force' => true]); $this->info(Artisan::output()); $this->info('正在检查内置插件文件...'); XboardInstall::restoreProtectedPlugins($this); $this->info('正在检查并安装默认插件...'); PluginManager::installDefaultPlugins(); $this->info('默认插件检查完成'); // Artisan::call('reset:traffic', ['--fix-null' => true]); $this->info('正在重新计算所有用户的重置时间...'); Artisan::call('reset:traffic', ['--force' => true]); $updateService = new UpdateService(); $updateService->updateVersionCache(); $themeService = app(ThemeService::class); $themeService->refreshCurrentTheme(); Artisan::call('horizon:terminate'); $this->info('更新完毕,队列服务已重启,你无需进行任何操作。'); } }