nhance/app/Models/AuthHistoryModel.php
2024-09-13 09:00:09 +05:30

22 lines
393 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class AuthHistoryModel extends Model
{
protected $table = 'auth_history';
protected $primaryKey = 'id';
protected $allowedFields = [
"id",
"user_id",
"user_type",
"ip",
"platform",
"broswer",
"created_by",
"updated_by",
];
}
?>