function paragraphs_remove_entitycache_table in Paragraphs 7
Helper to remove entitycache table.
1 call to paragraphs_remove_entitycache_table()
- paragraphs_modules_uninstalled in ./
paragraphs.module - Implements hook_modules_uninstalled().
File
- ./
paragraphs.module, line 1495 - Paragraphs hooks and common functions.
Code
function paragraphs_remove_entitycache_table() {
if (db_table_exists('cache_entity_paragraphs_item')) {
db_drop_table('cache_entity_paragraphs_item');
}
}