mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 04:59:30 +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',
|
|
];
|
|
}
|