mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-17 21:20:29 +00:00
19 lines
320 B
PHP
19 lines
320 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ApplicationDeploymentQueue extends Model
|
|
{
|
|
protected $fillable = [
|
|
'application_id',
|
|
'deployment_uuid',
|
|
'pull_request_id',
|
|
'force_rebuild',
|
|
'commit',
|
|
'status',
|
|
'is_webhook',
|
|
];
|
|
}
|