function cache_actions_test_uninstall in Cache Actions 7
Same name and namespace in other branches
- 6.2 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');
}
}