function l10n_update_schema_alter in Localization update 7
Same name and namespace in other branches
- 6 l10n_update.install \l10n_update_schema_alter()
- 7.2 l10n_update.install \l10n_update_schema_alter()
Implements hook_schema_alter().
File
- ./
l10n_update.install, line 148 - Install file for l10n remote updates.
Code
function l10n_update_schema_alter(&$schema) {
$schema['locales_target']['fields']['l10n_status'] = array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
);
}