diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-03-20 15:06:51 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-03-20 15:06:51 +0000 |
commit | aadc94a102375f3e8656c23cb711097f827be96e (patch) | |
tree | 1f2c1d13750bdb63f55e55c962360ad1c0ed3300 /modules/system/system.install | |
parent | 5717ba536ec238e9b587e3fed6e3304e3d0d8056 (diff) | |
download | brdo-aadc94a102375f3e8656c23cb711097f827be96e.tar.gz brdo-aadc94a102375f3e8656c23cb711097f827be96e.tar.bz2 |
- Patch #582948 by David_Rothstein: improve safety of schema manipulation.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 32eb9eb1a..f4a7898a1 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -2274,11 +2274,6 @@ function system_update_7042() { db_drop_field('url_alias', 'source'); db_drop_field('url_alias', 'alias'); - // Add the cache_path table. - $schema['cache_path'] = drupal_get_schema_unprocessed('system', 'cache'); - $schema['cache_path']['description'] = 'Cache table used for path alias lookups.'; - db_create_table('cache_path', $schema['cache_path']); - // Drop indexes. db_drop_index('url_alias', 'src_language_pid'); db_drop_unique_key('url_alias', 'dst_language_pid'); |