function l10n_update_schema_alter in Localization update 7.2
Same name and namespace in other branches
- 6 l10n_update.install \l10n_update_schema_alter()
- 7 l10n_update.install \l10n_update_schema_alter()
Implements hook_schema_alter().
File
- ./
l10n_update.install, line 138 - 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,
'description' => 'Boolean indicating whether the translation is custom to this site.',
);
}