Exemple #1
0
 /**
  * Adds the specified foreign key to a database table.
  *
  * @param Table      $table
  * @param ForeignKey $foreignKey
  * @return void
  */
 public function addForeignKey(Table $table, ForeignKey $foreignKey)
 {
     $this->adapter->addForeignKey($table, $foreignKey);
 }