lasthourcloud/app/Models/ApplicationDeploymentQueue.php

19 lines
320 B
PHP
Raw Normal View History

2023-05-24 12:26:50 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ApplicationDeploymentQueue extends Model
{
protected $fillable = [
'application_id',
2023-05-30 13:52:17 +00:00
'deployment_uuid',
'pull_request_id',
'force_rebuild',
'commit',
2023-05-24 12:26:50 +00:00
'status',
2023-05-31 09:24:02 +00:00
'is_webhook',
2023-05-24 12:26:50 +00:00
];
}