21 lines
365 B
PHP
Executable File
21 lines
365 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class SettingsModel extends Model
|
|
{
|
|
protected $table = 'settings';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
'mail_host',
|
|
'mail_port',
|
|
'mail_username',
|
|
'mail_password',
|
|
'email_token',
|
|
'created_by',
|
|
'updated_by'
|
|
];
|
|
}
|