CleanupLoginKeys

This commit is contained in:
HolgerHatGarKeineNode
2023-02-02 16:07:06 +01:00
parent 5d3919466f
commit aa3af0b1d7
2 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?php
namespace App\Console\Commands\Database;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;
class CleanupLoginKeys extends Command
{
/**
* The name and signature of the console command.
* @var string
*/
protected $signature = 'loginkeys:cleanup';
/**
* The console command description.
* @var string
*/
protected $description = 'Command description';
/**
* Execute the console command.
* @return int
*/
public function handle()
{
DB::table('login_keys')
->where('created_at', '<', now()->subDays(1))
->delete();
return Command::SUCCESS;
}
}