function l10n_update_update_7203 in Localization update 7.2
Removes the field 'l10n_server' from table {cache_l10n_update}.
File
- ./
l10n_update.install, line 550 - Install file for l10n remote updates.
Code
function l10n_update_update_7203() {
if (db_field_exists('l10n_update_project', 'l10n_server')) {
db_drop_field('l10n_update_project', 'l10n_server');
}
}