コード例 #1
0
ファイル: Schema.php プロジェクト: rajeshpillai/df-core
 /**
  * {@InheritDoc}
  */
 public function addForeignKey($name, $table, $columns, $refTable, $refColumns, $delete = null, $update = null)
 {
     // ON UPDATE not supported by Oracle
     return parent::addForeignKey($name, $table, $columns, $refTable, $refColumns, $delete, null);
 }