You are here

public function Sql::destroy in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::destroy()
  2. 9 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::destroy()

Removes any persistent storage used by this map.

For example, remove the map and message tables.

Overrides MigrateIdMapInterface::destroy

File

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

Class

Sql
Defines the sql based ID map implementation.

Namespace

Drupal\migrate\Plugin\migrate\id_map

Code

public function destroy() {
  $this
    ->getDatabase()
    ->schema()
    ->dropTable($this
    ->mapTableName());
  $this
    ->getDatabase()
    ->schema()
    ->dropTable($this
    ->messageTableName());
}