예제 #1
0
 /**
  * {@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);
 }