Initial commit - construprogress app
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class PendingSync extends Model
|
||||
{
|
||||
protected $fillable = ['user_id', 'action', 'payload', 'synced_at'];
|
||||
|
||||
protected $casts = [
|
||||
'payload' => 'array',
|
||||
'synced_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user