public function Sql::destroy in Drupal 9
Same name and namespace in other branches
- 8 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 880
Class
- Sql
- Defines the sql based ID map implementation.
Namespace
Drupal\migrate\Plugin\migrate\id_mapCode
public function destroy() {
$this
->getDatabase()
->schema()
->dropTable($this
->mapTableName());
$this
->getDatabase()
->schema()
->dropTable($this
->messageTableName());
}