41 lines
880 B
PHP
41 lines
880 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class EntraGroupSyncRun extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public const STATUS_PENDING = 'pending';
|
|
|
|
public const STATUS_RUNNING = 'running';
|
|
|
|
public const STATUS_SUCCEEDED = 'succeeded';
|
|
|
|
public const STATUS_FAILED = 'failed';
|
|
|
|
public const STATUS_PARTIAL = 'partial';
|
|
|
|
protected $guarded = [];
|
|
|
|
protected $casts = [
|
|
'safety_stop_triggered' => 'boolean',
|
|
'started_at' => 'datetime',
|
|
'finished_at' => 'datetime',
|
|
];
|
|
|
|
public function tenant(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Tenant::class);
|
|
}
|
|
|
|
public function initiator(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'initiator_user_id');
|
|
}
|
|
}
|