v2board/app/Console/Commands/ResetLog.php

53 lines
1.1 KiB
PHP
Raw Normal View History

2022-07-07 04:04:47 +08:00
<?php
namespace App\Console\Commands;
2023-06-01 23:31:56 +08:00
use App\Models\Log;
2022-07-07 04:04:47 +08:00
use App\Models\Plan;
2022-12-15 11:01:31 +08:00
use App\Models\StatServer;
2022-07-07 04:04:47 +08:00
use App\Models\StatUser;
use App\Utils\Helper;
use Illuminate\Console\Command;
use App\Models\User;
use Illuminate\Support\Facades\DB;
class ResetLog extends Command
{
protected $builder;
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'reset:log';
/**
* The console command description.
*
* @var string
*/
protected $description = '清空日志';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
2022-12-15 11:01:31 +08:00
StatUser::where('record_at', '<', strtotime('-2 month', time()))->delete();
StatServer::where('record_at', '<', strtotime('-2 month', time()))->delete();
2023-06-01 23:31:56 +08:00
Log::where('created_at', '<', strtotime('-1 month', time()))->delete();
2022-07-07 04:04:47 +08:00
}
}