Example #1
0
 /**
   Add extra indexes besides the ones in the
   parent table dtransactions
 */
 public function __construct($con)
 {
     parent::__construct($con);
     $this->columns['register_no']['index'] = true;
     $this->columns['trans_no']['index'] = true;
     $this->columns['emp_no']['index'] = true;
 }
 public function __construct($con)
 {
     unset($this->columns['trans_id']);
     parent::__construct($con);
 }
Example #3
0
 public function __construct($con)
 {
     $this->columns['trans_id']['increment'] = true;
     $this->columns['trans_id']['index'] = true;
     parent::__construct($con);
 }