6383da7f12
ремонт: incident-followup cleanup batch — 4 хвоста 1. Larastan baseline regenerated (was 161 errors pre-existing IDE helper drift) 2. Deptrac Mail: [Model, Service] + ADR-005 amend (was 4 pre-existing violations) 3. PG logrotate config in setup-logrotate.yml 4. F1 6 mismatches — RCA updated (algorithm divergence trigger global vs verify per-tenant) +3 cspell words: notifempty, missingok, верифицируется. Ref: docs/incidents/2026-05-29-disk-full-pg-recovery.md §4-5
61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
/**
|
|
* Очередь яруса 3 резерва канала миграции проектов.
|
|
*
|
|
* Spec: docs/superpowers/specs/2026-05-19-supplier-project-channel-failover-design.md §4.5
|
|
*
|
|
* @property int $id
|
|
* @property int $project_id
|
|
* @property string $platform
|
|
* @property string $operation
|
|
* @property string|null $external_id
|
|
* @property array<string, mixed> $payload_snapshot
|
|
* @property string $failure_reason
|
|
* @property string $status
|
|
* @property int|null $resolved_by_user_id
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $resolved_at
|
|
*
|
|
* @mixin IdeHelperSupplierManualSyncQueue
|
|
*/
|
|
class SupplierManualSyncQueue extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'supplier_manual_sync_queue';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'project_id', 'platform', 'operation', 'external_id',
|
|
'payload_snapshot', 'failure_reason', 'status',
|
|
'resolved_by_user_id', 'created_at', 'resolved_at',
|
|
];
|
|
|
|
protected $casts = [
|
|
'payload_snapshot' => 'array',
|
|
'created_at' => 'datetime',
|
|
'resolved_at' => 'datetime',
|
|
];
|
|
|
|
public function project(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Project::class);
|
|
}
|
|
|
|
public function resolver(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'resolved_by_user_id');
|
|
}
|
|
}
|