You are here

function editor_uninstall in Editor 7

Implements hook_uninstall().

File

./editor.install, line 71
Install, update and uninstall functions for the Editor module.

Code

function editor_uninstall() {

  // Remove the added column to the core {filter_format} table.
  db_drop_field('filter_format', 'editor');

  // Remove the added column to the core {filter_format} table.
  db_drop_field('filter_format', 'editor_settings');
}