You are here

function paragraphs_uninstall in Paragraphs 7

Implements hook_uninstall().

File

./paragraphs.install, line 153
Install, update and uninstall functions for the paragraphs module.

Code

function paragraphs_uninstall() {

  // We can't use paragraphs_remove_entitycache_table() here.
  // The module isn't loaded here.
  if (db_table_exists('cache_entity_paragraphs_item')) {
    db_drop_table('cache_entity_paragraphs_item');
  }
}