52 lines
918 B
PHP
Executable File
52 lines
918 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class JobBatch
|
|
*
|
|
* @property string $id
|
|
* @property string $name
|
|
* @property int $total_jobs
|
|
* @property int $pending_jobs
|
|
* @property int $failed_jobs
|
|
* @property string $failed_job_ids
|
|
* @property string|null $options
|
|
* @property int|null $cancelled_at
|
|
* @property int $created_at
|
|
* @property int|null $finished_at
|
|
*
|
|
* @package App\Models
|
|
*/
|
|
class JobBatch extends Model
|
|
{
|
|
protected $table = 'job_batches';
|
|
public $incrementing = false;
|
|
public $timestamps = false;
|
|
|
|
protected $casts = [
|
|
'total_jobs' => 'int',
|
|
'pending_jobs' => 'int',
|
|
'failed_jobs' => 'int',
|
|
'cancelled_at' => 'int',
|
|
'finished_at' => 'int'
|
|
];
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'total_jobs',
|
|
'pending_jobs',
|
|
'failed_jobs',
|
|
'failed_job_ids',
|
|
'options',
|
|
'cancelled_at',
|
|
'finished_at'
|
|
];
|
|
}
|