2026.06.8

This commit is contained in:
brusnitsyn
2026-06-18 17:45:41 +09:00
parent 698422e0ba
commit f163b95663
15 changed files with 695 additions and 20 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ReplicationLog extends Model
{
protected $fillable = [
'status',
'schedule_id',
'tables_success',
'tables_failed',
'errors',
'payload',
'received_at',
];
protected $casts = [
'errors' => 'array',
'payload' => 'array',
'received_at' => 'datetime',
];
}