mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
17 lines
412 B
PHP
Executable File
17 lines
412 B
PHP
Executable File
<?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';
|
|
} |