diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-10-09 16:08:37 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-10-09 16:08:37 +0000 |
commit | c1e9256dcba4a1956082a2fcb780739a1c566cab (patch) | |
tree | 96bb58852885462d0763506352239db1d771817f /modules | |
parent | 2a19a5c3e115b1c49eed215dbcd30d838686aed0 (diff) | |
download | brdo-c1e9256dcba4a1956082a2fcb780739a1c566cab.tar.gz brdo-c1e9256dcba4a1956082a2fcb780739a1c566cab.tar.bz2 |
#181758 by webernet: move cache_block creation to update_fix_d6_requirements() to avoid warnings about the nonexistent table through the update process
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.install | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 8ffd1d5f0..b0903b0bc 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3861,20 +3861,8 @@ function system_update_6027() { // Create the blocks.cache column. db_add_field($ret, 'blocks', 'cache', array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny')); - // Create the cache_block table. - $schema['cache_block'] = array( - 'fields' => array( - 'cid' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), - 'data' => array('type' => 'blob', 'not null' => FALSE, 'size' => 'big'), - 'expire' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), - 'created' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), - 'headers' => array('type' => 'text', 'not null' => FALSE), - 'serialized' => array('type' => 'int', 'size' => 'small', 'not null' => TRUE, 'default' => 0) - ), - 'indexes' => array('expire' => array('expire')), - 'primary key' => array('cid'), - ); - db_create_table($ret, 'cache_block', $schema['cache_block']); + // The cache_block table is created in update_fix_d6_requirements() since + // calls to cache_clear_all() would otherwise cause warnings. // Fill in the values for the new 'cache' column, // by refreshing the {blocks} table. |