You are here

public function SchemaMigratorOptions::setRecreatePrimaryKey in Schema 8

Parameters

boolean $recreatePrimaryKey:

Return value

$this

File

src/Migration/SchemaMigratorOptions.php, line 92
Contains Drupal\schema\Migration\SchemaMigratorOptions.

Class

SchemaMigratorOptions

Namespace

Drupal\schema\Migration

Code

public function setRecreatePrimaryKey($recreatePrimaryKey) {
  $this->recreatePrimaryKey = $recreatePrimaryKey;
  return $this;
}