コード例 #1
0
 /**
  * {@inheritdoc}
  */
 public function getColumnTypes()
 {
     return array_merge(parent::getColumnTypes(), array('json', 'jsonb'));
 }
コード例 #2
0
ファイル: SqlServerAdapter.php プロジェクト: lhas/pep
 /**
  * {@inheritdoc}
  */
 public function getColumnTypes()
 {
     return array_merge(parent::getColumnTypes(), array('filestream'));
 }
コード例 #3
0
ファイル: MysqlAdapter.php プロジェクト: parkerj/eduTrac-SIS
 /**
  * Returns MySQL column types (inherited and MySQL specified).
  * @return array
  */
 public function getColumnTypes()
 {
     return array_merge(parent::getColumnTypes(), array('enum', 'set', 'year', 'json'));
 }