From c1e9256dcba4a1956082a2fcb780739a1c566cab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Tue, 9 Oct 2007 16:08:37 +0000 Subject: #181758 by webernet: move cache_block creation to update_fix_d6_requirements() to avoid warnings about the nonexistent table through the update process --- modules/system/system.install | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'modules/system') 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. -- cgit v1.2.3