summaryrefslogtreecommitdiff
path: root/includes/update.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/update.inc')
-rw-r--r--includes/update.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/update.inc b/includes/update.inc
index d351dcde0..4458ccce4 100644
--- a/includes/update.inc
+++ b/includes/update.inc
@@ -349,7 +349,8 @@ function update_fix_d7_requirements() {
db_add_index('system', 'system_list', array('weight', 'name'));
// Add the cache_path table.
- $schema['cache_path'] = drupal_get_schema_unprocessed('system', 'cache');
+ require_once('./modules/system/system.install');
+ $schema['cache_path'] = system_schema_cache_7054();
$schema['cache_path']['description'] = 'Cache table used for path alias lookups.';
db_create_table('cache_path', $schema['cache_path']);