2026.06.8
This commit is contained in:
24
app/Models/ReplicationLog.php
Normal file
24
app/Models/ReplicationLog.php
Normal 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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user