masquerade.install in Masquerade 8.2
Same filename and directory in other branches
Install, uninstall, and update hooks for the Masquerade module.
File
masquerade.installView source
<?php
/**
* @file
* Install, uninstall, and update hooks for the Masquerade module.
*/
/**
* Remove the {masquerade} table.
*/
function masquerade_update_8200() {
$schema = \Drupal::database()
->schema();
if ($schema
->tableExists('masquerade')) {
$schema
->dropTable('masquerade');
}
}
Functions
Name | Description |
---|---|
masquerade_update_8200 | Remove the {masquerade} table. |