25 lines
426 B
PHP
25 lines
426 B
PHP
<?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',
|
|
];
|
|
}
|