You are here

function l10n_update_update_7202 in Localization update 7.2

Removes table {cache_l10n_update}.

File

./l10n_update.install, line 541
Install file for l10n remote updates.

Code

function l10n_update_update_7202() {
  if (db_table_exists('cache_l10n_update')) {
    db_drop_table('cache_l10n_update');
  }
}