mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
15 lines
346 B
PHP
15 lines
346 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
class BackupModel extends BaseModel
|
|
{
|
|
protected $table = 'auth_backup';
|
|
protected $primaryKey = 'id_backup';
|
|
protected $allowedFields = [
|
|
'path',
|
|
'error'
|
|
];
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
} |