13 lines
249 B
PHP
13 lines
249 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class Variable_model extends Model
|
|
{
|
|
protected $table = 'email_template_variables';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $allowedFields = ['name','variable_name','type'];
|
|
|
|
|
|
} |