feat: DB and Model for docker cleanup executions

This commit is contained in:
peaklabs-dev
2025-01-15 17:11:15 +01:00
parent 23ae0677eb
commit 52abc7cc92
2 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class DockerCleanupExecution extends BaseModel
{
protected $guarded = [];
public function server(): BelongsTo
{
return $this->belongsTo(Server::class);
}
}