This commit is contained in:
2023-11-24 20:49:19 +08:00
parent ca5219cb93
commit be14f5fdb1
65 changed files with 1991 additions and 2214 deletions

View File

@@ -11,25 +11,23 @@
/**
* Class DailyTaskSchedule
*
*
* @property int $id
* @property string $task
* @property Carbon $next_run_time
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
*
* @package App\Models
*/
class DailyTaskSchedule extends Model
{
protected $table = 'daily_task_schedules';
protected $table = 'daily_task_schedules';
protected $casts = [
'next_run_time' => 'datetime'
];
protected $casts = [
'next_run_time' => 'datetime',
];
protected $fillable = [
'task',
'next_run_time'
];
protected $fillable = [
'task',
'next_run_time',
];
}