mirror of
https://github.com/v2board/v2board.git
synced 2025-02-10 23:49:12 +08:00
update: reset log
This commit is contained in:
parent
e6e7cbf48d
commit
2823f1bd47
49
app/Console/Commands/ResetLog.php
Normal file
49
app/Console/Commands/ResetLog.php
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
|
use App\Models\Plan;
|
||||||
|
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()
|
||||||
|
{
|
||||||
|
StatUser::where('record_at', '<', strtotime('-2 month', time()))
|
||||||
|
->delete();
|
||||||
|
}
|
||||||
|
}
|
@ -35,6 +35,7 @@ class Kernel extends ConsoleKernel
|
|||||||
$schedule->command('check:ticket')->everyMinute();
|
$schedule->command('check:ticket')->everyMinute();
|
||||||
// reset
|
// reset
|
||||||
$schedule->command('reset:traffic')->daily();
|
$schedule->command('reset:traffic')->daily();
|
||||||
|
$schedule->command('reset:log')->daily();
|
||||||
// send
|
// send
|
||||||
$schedule->command('send:remindMail')->dailyAt('11:30');
|
$schedule->command('send:remindMail')->dailyAt('11:30');
|
||||||
// horizon metrics
|
// horizon metrics
|
||||||
|
Loading…
Reference in New Issue
Block a user