function lingotek_migration_2 in Lingotek Translation 7.3
Same name and namespace in other branches
- 7.7 lingotek.util.inc \lingotek_migration_2()
- 7.2 lingotek.util.inc \lingotek_migration_2()
- 7.4 lingotek.util.inc \lingotek_migration_2()
- 7.5 lingotek.util.inc \lingotek_migration_2()
- 7.6 lingotek.util.inc \lingotek_migration_2()
Migration 2
2 calls to lingotek_migration_2()
- lingotek_cleanup_utility in ./
lingotek.util.inc - Clean-up utility
- lingotek_update_7210 in ./
lingotek.install - Extend languages table to have lingotek_locale field
File
- ./
lingotek.util.inc, line 982 - Utility functions.
Code
function lingotek_migration_2() {
$spec = array(
'type' => 'varchar',
'description' => "Locale mapping",
'length' => 10,
'not null' => TRUE,
'default' => '',
);
try {
db_add_field('languages', 'lingotek_locale', $spec);
} catch (DatabaseSchemaObjectExistsException $e) {
// already exists (no need to do anything)
}
drupal_static_reset('language_list');
}