1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use Illuminate\Support\Facades\DB;
- use App\Models\ServerLog;
- class ResetServerLog extends Command
- {
-
- protected $signature = 'reset:serverLog';
-
- protected $description = '节点服务器日志重置';
-
- public function __construct()
- {
- parent::__construct();
- }
-
- public function handle()
- {
- ServerLog::truncate();
- }
- }
|