You are here

function manager_content_export_yaml_uninstall in Content Export YAML 8

Implementation of hook_uninstall().

File

modules/manager_content_export_yaml/manager_content_export_yaml.install, line 76

Code

function manager_content_export_yaml_uninstall() {

  // Remove tables.
  \Drupal::database()
    ->schema()
    ->dropTable('content_export_yaml');
}