function l10n_update_update_6005 in Localization update 6
Create {cache_l10n_update} table.
File
- ./
l10n_update.install, line 291 - Install file for l10n remote updates.
Code
function l10n_update_update_6005() {
if (!db_table_exists('cache_l10n_update')) {
$ret = array();
$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($ret, 'cache_l10n_update', $schema);
return $ret;
}
}