<?php12namespace Pterodactyl\Models;34use Illuminate\Database\Eloquent\Model;56class TaskLog extends Model7{8/**9* The table associated with the model.10*/11protected $table = 'tasks_log';1213/**14* Fields that are not mass assignable.15*/16protected $guarded = ['id', 'created_at', 'updated_at'];1718/**19* Cast values to correct type.20*/21protected $casts = [22'id' => 'integer',23'task_id' => 'integer',24'run_status' => 'integer',25'run_time' => 'datetime',26'created_at' => 'datetime',27'updated_at' => 'datetime',28];29}303132