45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Support\Concerns\DerivesWorkspaceIdFromTenant;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class BackupSchedule extends Model
|
|
{
|
|
use DerivesWorkspaceIdFromTenant;
|
|
use HasFactory;
|
|
use SoftDeletes;
|
|
|
|
protected $guarded = [];
|
|
|
|
protected $casts = [
|
|
'is_enabled' => 'boolean',
|
|
'include_foundations' => 'boolean',
|
|
'days_of_week' => 'array',
|
|
'policy_types' => 'array',
|
|
'last_run_at' => 'datetime',
|
|
'next_run_at' => 'datetime',
|
|
];
|
|
|
|
public function tenant(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Tenant::class);
|
|
}
|
|
|
|
public function operationRuns(): HasMany
|
|
{
|
|
return $this->hasMany(OperationRun::class, 'tenant_id', 'tenant_id')
|
|
->whereIn('type', [
|
|
'backup_schedule_run',
|
|
'backup_schedule_retention',
|
|
'backup_schedule_purge',
|
|
])
|
|
->where('context->backup_schedule_id', (int) $this->getKey());
|
|
}
|
|
}
|