coolify/app/Models/ApplicationSetting.php

19 lines
341 B
PHP
Raw Normal View History

2023-03-28 15:47:37 +02:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ApplicationSetting extends Model
{
2023-04-19 14:00:31 +02:00
protected $fillable = [
2023-04-25 14:43:35 +02:00
'application_id',
2023-04-19 14:00:31 +02:00
'is_git_submodules_allowed',
'is_git_lfs_allowed',
];
public function application()
{
return $this->belongsTo(Application::class);
}
2023-03-28 15:47:37 +02:00
}