This commit is contained in:
imnavajas
2025-06-09 15:18:12 +02:00
parent e53626bbfe
commit 6967a61d93
6 changed files with 258 additions and 33 deletions

View File

@ -0,0 +1,15 @@
<?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;
}