123456789101112131415161718192021222324252627 |
- <?php
- function libraries_schema() {
- $schema['cache_libraries'] = drupal_get_schema_unprocessed('system', 'cache');
- $schema['cache_libraries']['description'] = 'Cache table to store library information.';
- return $schema;
- }
- function libraries_update_7200() {
-
-
- if (!db_table_exists('cache_libraries')) {
- $specs = libraries_schema();
- db_create_table('cache_libraries', $specs['cache_libraries']);
- }
- }
|