mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
35 lines
682 B
PHP
35 lines
682 B
PHP
<?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;
|
|
}
|
|
}
|