Start scheduled task job execution.

This commit is contained in:
Stuart Rowlands
2024-01-01 18:23:58 -08:00
parent 7913a639b5
commit 9bbe9567c7
3 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class ScheduledTaskExecution extends BaseModel
{
protected $guarded = [];
public function scheduledTask(): BelongsTo
{
return $this->belongsTo(ScheduledTask::class);
}
}