新增:聊天记录定期清理任务
- 新增 messages:purge Artisan 命令,分批删除旧消息 - 默认保留最近 30 天,可通过 sysparam message_retention_days 配置 - 支持 --days 参数覆盖和 --dry-run 预览模式 - 每天凌晨 3 点自动执行 - 线上需配置 crontab: * * * * * php artisan schedule:run
This commit is contained in:
@@ -2,7 +2,11 @@
|
||||
|
||||
use Illuminate\Foundation\Inspiring;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
use Illuminate\Support\Facades\Schedule;
|
||||
|
||||
Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote');
|
||||
|
||||
// 每天凌晨 3 点清理超过 30 天的聊天记录
|
||||
Schedule::command('messages:purge')->dailyAt('03:00');
|
||||
|
||||
Reference in New Issue
Block a user