mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 10:23:30 +00:00
Move V5 source, migrations, UI, scripts, and tests into documentation, then remove V5 routes, models, jobs, configuration, dependencies, and application hooks.
23 lines
416 B
Plaintext
23 lines
416 B
Plaintext
<?php
|
|
|
|
namespace App\Models\V5;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class ApplicationDomain extends V5Model
|
|
{
|
|
protected $table = 'v5_application_domains';
|
|
|
|
protected bool $hasUuidColumn = false;
|
|
|
|
protected $fillable = [
|
|
'application_id',
|
|
'domain',
|
|
];
|
|
|
|
public function application(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Application::class);
|
|
}
|
|
}
|