You are here

function helper_drush_cache_clear_migrate in Helper 7

Clears the migrate cache (and the registry cache).

1 string reference to 'helper_drush_cache_clear_migrate'
helper_drush_cache_clear in ./helper.drush.inc
Implements hook_drush_cache_clear().

File

./helper.drush.inc, line 53
Drush integration for the Helper module.

Code

function helper_drush_cache_clear_migrate() {
  registry_rebuild();
  migrate_static_registration();
  cache_clear_all('migrate', 'cache', TRUE);
}