function l10n_update_update_7004 in Localization update 7
Same name and namespace in other branches
- 7.2 l10n_update.install \l10n_update_update_7004()
Create {cache_l10n_update} table.
File
- ./
l10n_update.install, line 300 - Install file for l10n remote updates.
Code
function l10n_update_update_7004() {
if (!db_table_exists('cache_l10n_update')) {
$schema = drupal_get_schema_unprocessed('system', 'cache');
$schema['description'] = 'Cache table for the Localization Update module to store information about available releases, fetched from central server.';
db_create_table('cache_l10n_update', $schema);
}
}