9 lines
297 B
PHP
9 lines
297 B
PHP
|
|
<?php namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class VendorsModel extends Model {
|
||
|
|
protected $table = 'vendors';
|
||
|
|
protected $primaryKey = 'vendorid';
|
||
|
|
protected $allowedFields = [ 'vendorname', 'initial', 'principal', 'email_1', 'email_2', 'phone', 'website', 'createdate', 'enddate' ];
|
||
|
|
}
|