You are here

function l10n_update_update_7206 in Localization update 7.2

Remove 'headers' field from cache table.

File

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

Code

function l10n_update_update_7206() {
  if (db_field_exists('cache_l10n_update', 'headers')) {
    db_drop_field('cache_l10n_update', 'headers');
  }
}