You are here

function locale_uninstall in Localization client 5

Implementation of hook_uninstall().

File

locale/locale.install, line 82

Code

function locale_uninstall() {
  db_query('DROP TABLE {locales_meta}');
  db_query('DROP TABLE {locales_source}');
  db_query('DROP TABLE {locales_target}');
}