mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
12 lines
235 B
PHP
12 lines
235 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
class TimezoneModel extends BaseModel
|
|
{
|
|
protected $table = 'auth_timezone';
|
|
protected $primaryKey = 'id_timezone';
|
|
protected $allowedFields = [
|
|
'timezone',
|
|
'description'
|
|
];
|
|
} |