Files
safekat/ci4/app/Models/Soporte/ticketFileModel.php
2025-04-21 12:55:45 +02:00

11 lines
327 B
PHP
Executable File

<?php
namespace App\Models\Soporte;
class ticketFileModel extends \App\Models\BaseModel
{
protected $table = 'tickets_adjuntos';
protected $primaryKey = 'id';
protected $allowedFields = ['ticket_id','respuesta_id', 'nombre', 'hash', 'path', 'created_at', 'updated_at'];
protected $useTimestamps = true;
}