23 lines
378 B
PHP
Executable File
23 lines
378 B
PHP
Executable File
<?php
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class ChatBotModel extends Model
|
|
{
|
|
protected $table = 'chat_bot';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
"id",
|
|
"request",
|
|
"options",
|
|
"is_option",
|
|
"created_by",
|
|
"updated_by",
|
|
"is_active",
|
|
];
|
|
|
|
|
|
|
|
}
|
|
?>
|