mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
16 lines
352 B
PHP
16 lines
352 B
PHP
<?php
|
|
|
|
namespace App\Models\Sistema;
|
|
|
|
use App\Models\BaseModel;
|
|
|
|
class BackupModel extends BaseModel
|
|
{
|
|
protected $table = 'backups';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
'filename', 'type', 'path_local', 'path_remote', 'size', 'status', 'created_at', 'updated_at'
|
|
];
|
|
protected $useTimestamps = true;
|
|
}
|