mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
20 lines
434 B
PHP
20 lines
434 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
class ActivityModel extends BaseModel
|
|
{
|
|
protected $table = 'auth_activity';
|
|
protected $primaryKey = 'id_activity';
|
|
protected $allowedFields = [
|
|
'user',
|
|
'level',
|
|
'event',
|
|
'ip',
|
|
'os',
|
|
'browser',
|
|
'detail'
|
|
];
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
} |