コード例 #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;
 }
コード例 #2
0
 public function __construct($con)
 {
     unset($this->columns['trans_id']);
     parent::__construct($con);
 }
コード例 #3
0
ファイル: LocalTempTransModel.php プロジェクト: phpsmith/IS4C
 public function __construct($con)
 {
     $this->columns['trans_id']['increment'] = true;
     $this->columns['trans_id']['index'] = true;
     parent::__construct($con);
 }