Mercurial > hg > rr-repo
view sites/all/modules/libraries/libraries.install @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | |
children |
line wrap: on
line source
<?php /** * @file * Install, uninstall, and update functions for libraries.module. */ /** * Implements hook_schema(). */ function libraries_schema() { $schema['cache_libraries'] = drupal_get_schema_unprocessed('system', 'cache'); $schema['cache_libraries']['description'] = 'Cache table to store library information.'; return $schema; } /** * Create the 'cache_libraries' table. */ function libraries_update_7200() { // Note that previous versions of this function created the table with a // different table comment. if (!db_table_exists('cache_libraries')) { $specs = libraries_schema(); db_create_table('cache_libraries', $specs['cache_libraries']); } }