mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Commit realizando cambios en los roles de los usuarios
This commit is contained in:
17
ci4/app/Models/ConfirmationTokenModel.php
Normal file
17
ci4/app/Models/ConfirmationTokenModel.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
namespace App\Models;
|
||||
|
||||
class ConfirmationTokenModel extends BaseModel
|
||||
{
|
||||
protected $table = 'auth_confirmation_token';
|
||||
protected $primaryKey = 'id_confirmation';
|
||||
protected $allowedFields = [
|
||||
'user',
|
||||
'token',
|
||||
'confirmed',
|
||||
'type'
|
||||
];
|
||||
protected $useTimestamps = true;
|
||||
protected $createdField = 'created_at';
|
||||
protected $updatedField = 'updated_at';
|
||||
}
|
||||
Reference in New Issue
Block a user