function l10n_update_install in Localization update 7
Same name and namespace in other branches
- 6 l10n_update.install \l10n_update_install()
- 7.2 l10n_update.install \l10n_update_install()
Implements hook_install().
File
- ./l10n_update.install, line 159 
- Install file for l10n remote updates.
Code
function l10n_update_install() {
  db_add_field('locales_target', 'l10n_status', array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
  ));
  variable_set('l10n_update_rebuild_projects', 1);
}