You are here

function filefield_paths_uninstall in File (Field) Paths 6.2

Same name and namespace in other branches
  1. 5 filefield_paths.install \filefield_paths_uninstall()
  2. 6 filefield_paths.install \filefield_paths_uninstall()
  3. 7 filefield_paths.install \filefield_paths_uninstall()

Implements hook_uninstall().

File

./filefield_paths.install, line 25
Install, update and uninstall functions for the FileField Paths module.

Code

function filefield_paths_uninstall() {
  drupal_uninstall_schema('filefield_paths');
  db_drop_field($ret = array(), 'files', 'origname');
  variable_del('filefield_paths_schema_version');
}