You are here

function l10n_update_update_7009 in Localization update 7

Remove 'headers' field from cache table.

File

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

Code

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