You are here

function cache_actions_test_uninstall in Cache Actions 6.2

Same name and namespace in other branches
  1. 7 cache_actions_test/cache_actions_test.install \cache_actions_test_uninstall()

File

cache_actions_test/cache_actions_test.install, line 55
This is the install file for the test module. It adds a cache table that it uses for testing.

Code

function cache_actions_test_uninstall() {
  if (db_table_exists('cache_cache_actions_test')) {
    drupal_uninstall_schema('cache_actions_test');
  }
}