From 43a91526d533338424cec0eebfe895fde9b84cdb Mon Sep 17 00:00:00 2001 From: root Date: Thu, 19 Dec 2019 21:20:51 +0800 Subject: [PATCH] update --- .../Commands/{AppUpdate.php => V2boardUpdate.php} | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) rename app/Console/Commands/{AppUpdate.php => V2boardUpdate.php} (77%) diff --git a/app/Console/Commands/AppUpdate.php b/app/Console/Commands/V2boardUpdate.php similarity index 77% rename from app/Console/Commands/AppUpdate.php rename to app/Console/Commands/V2boardUpdate.php index f6af8933..ef769c66 100644 --- a/app/Console/Commands/AppUpdate.php +++ b/app/Console/Commands/V2boardUpdate.php @@ -5,22 +5,23 @@ namespace App\Console\Commands; use Illuminate\Console\Command; use App\Models\Order; use App\Models\User; +use Illuminate\Support\Facades\DB; -class AppUpdate extends Command +class V2boardUpdate extends Command { /** * The name and signature of the console command. * * @var string */ - protected $signature = 'app:update'; + protected $signature = 'v2board:update'; /** * The console command description. * * @var string */ - protected $description = '从git强制覆盖更新'; + protected $description = 'v2board 更新'; /** * Create a new command instance. @@ -39,6 +40,6 @@ class AppUpdate extends Command */ public function handle() { + } - }