49 lines
1.0 KiB
PHP
49 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class BackupScheduleRun extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public const STATUS_RUNNING = 'running';
|
|
|
|
public const STATUS_SUCCESS = 'success';
|
|
|
|
public const STATUS_PARTIAL = 'partial';
|
|
|
|
public const STATUS_FAILED = 'failed';
|
|
|
|
public const STATUS_CANCELED = 'canceled';
|
|
|
|
public const STATUS_SKIPPED = 'skipped';
|
|
|
|
protected $guarded = [];
|
|
|
|
protected $casts = [
|
|
'scheduled_for' => 'datetime',
|
|
'started_at' => 'datetime',
|
|
'finished_at' => 'datetime',
|
|
'summary' => 'array',
|
|
];
|
|
|
|
public function schedule(): BelongsTo
|
|
{
|
|
return $this->belongsTo(BackupSchedule::class, 'backup_schedule_id');
|
|
}
|
|
|
|
public function tenant(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Tenant::class);
|
|
}
|
|
|
|
public function backupSet(): BelongsTo
|
|
{
|
|
return $this->belongsTo(BackupSet::class);
|
|
}
|
|
}
|