diff options
-rw-r--r-- | includes/update.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/update.inc b/includes/update.inc index 5fdc16981..496b824c2 100644 --- a/includes/update.inc +++ b/includes/update.inc @@ -466,6 +466,9 @@ function update_fix_d7_requirements() { db_add_index('system', 'system_list', array('weight', 'name')); // Add the cache_path table. + if (db_table_exists('cache_path')) { + db_drop_table('cache_path'); + } require_once('./modules/system/system.install'); $schema['cache_path'] = system_schema_cache_7054(); $schema['cache_path']['description'] = 'Cache table used for path alias lookups.'; |