Add Nostr publishing and login keys cleanup commands

This commit is contained in:
HolgerHatGarKeineNode
2025-11-21 16:34:38 +01:00
parent efe44cf344
commit 7adefecfbb
4 changed files with 197 additions and 5 deletions

View File

@@ -0,0 +1,35 @@
<?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.
*/
public function handle(): int
{
DB::table('login_keys')
->where('created_at', '<', now()->subDays(1))
->delete();
return Command::SUCCESS;
}
}