73 lines
1.7 KiB
PHP
73 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class CustomerDetails extends Model
|
|
{
|
|
protected $table = 'customer_details';
|
|
protected $primaryKey = 'customer_id';
|
|
|
|
protected $useSoftDeletes = true;
|
|
|
|
protected $allowedFields = [
|
|
'company_name',
|
|
'company_ssm_no',
|
|
'DOB',
|
|
'TIN_no',
|
|
'phone_no',
|
|
'email',
|
|
'address_1',
|
|
'address_2',
|
|
'address_3',
|
|
'address_4',
|
|
'poscode',
|
|
'town',
|
|
'state',
|
|
'country',
|
|
'membership_no',
|
|
'platform_id',
|
|
'membership_expiry',
|
|
'created_at',
|
|
'updated_at',
|
|
'deleted_at'
|
|
];
|
|
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = 'array';
|
|
|
|
protected $protectFields = true;
|
|
|
|
|
|
protected bool $allowEmptyInserts = false;
|
|
protected bool $updateOnlyChanged = true;
|
|
|
|
protected array $casts = [];
|
|
protected array $castHandlers = [];
|
|
|
|
// Dates
|
|
protected $useTimestamps = false;
|
|
protected $dateFormat = 'datetime';
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
protected $deletedField = 'deleted_at';
|
|
|
|
// Validation
|
|
protected $validationRules = [];
|
|
protected $validationMessages = [];
|
|
protected $skipValidation = false;
|
|
protected $cleanValidationRules = true;
|
|
|
|
// Callbacks
|
|
protected $allowCallbacks = true;
|
|
protected $beforeInsert = [];
|
|
protected $afterInsert = [];
|
|
protected $beforeUpdate = [];
|
|
protected $afterUpdate = [];
|
|
protected $beforeFind = [];
|
|
protected $afterFind = [];
|
|
protected $beforeDelete = [];
|
|
protected $afterDelete = [];
|
|
}
|