function Sql::prepareUpdate

Same name and namespace in other branches
  1. 11.x core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::prepareUpdate()

File

core/modules/migrate/src/Plugin/migrate/id_map/Sql.php, line 762

Class

Sql
Defines the sql based ID map implementation.

Namespace

Drupal\migrate\Plugin\migrate\id_map

Code

public function prepareUpdate() {
  $this->getDatabase()
    ->update($this->mapTableName())
    ->fields([
    'source_row_status' => MigrateIdMapInterface::STATUS_NEEDS_UPDATE,
  ])
    ->execute();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.