diff options
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index a80e6ceda..38eec361d 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -2380,7 +2380,7 @@ function system_update_7053() { * Remove {cache_*}.headers columns. */ function system_update_7054() { - $cache_tables = array('cache', 'cache_bootstrap', 'cache_filter', 'cache_form', 'cache_menu', 'cache_page', 'cache_path'); + $cache_tables = array('cache', 'cache_filter', 'cache_form', 'cache_menu', 'cache_page', 'cache_path'); foreach ($cache_tables as $table) { db_drop_field($table, 'headers'); } |