You are here

function media_library_uninstall in Media Library 7

Implements hook_uninstall().

File

./media_library.install, line 39
Install, update and uninstall functions for the Media Library module.

Code

function media_library_uninstall() {

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

  // Remove variables.
  variable_del('media_library_file_add_default');
}