16 lines
363 B
PHP
16 lines
363 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class Member_address_model extends Model
|
|
{
|
|
protected $table = 'member_address';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $allowedFields = ['member_id', 'first_name','last_name','street_address', 'apartment_number', 'country' , 'state' , 'zip_code' , 'address_type' , 'is_active'];
|
|
|
|
|
|
|
|
|
|
|
|
} |