Skip to content

Instantly share code, notes, and snippets.

@wojtha
Created June 27, 2011 13:29
Show Gist options
  • Select an option

  • Save wojtha/1048852 to your computer and use it in GitHub Desktop.

Select an option

Save wojtha/1048852 to your computer and use it in GitHub Desktop.
Drupal snippet - wipeout obsolete Feature
<?php
/**
* NOT SAFE! Disable the Feature before running this!
*/
$name = 'obsolete_feature';
db_query("DELETE FROM {system} WHERE `name`='%s'", $name);
db_query("DELETE FROM {cache} WHERE `cid`='features_module_info'");
db_query("DELETE FROM {variable} WHERE `name`='features_codecache'");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment