summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-11-06 11:40:15 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-11-06 11:40:15 +0000
commitbfd7c0f1f97d6504091d3d7a97e609e2a26d7de9 (patch)
treef5804c543a7c4f021703bbc99e9c4ff6fb1f806c /modules/system/system.install
parente0c7c0e35eeeac8a85d9da56efb4fdc8f2ab8d26 (diff)
downloadbrdo-bfd7c0f1f97d6504091d3d7a97e609e2a26d7de9.tar.gz
brdo-bfd7c0f1f97d6504091d3d7a97e609e2a26d7de9.tar.bz2
#80963 by chx with multiple contributors: remove deletion and database lock based block rehash code, replace it with simpler updates
Diffstat (limited to 'modules/system/system.install')
-rw-r--r--modules/system/system.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 2d7ef8be3..1d7e58e62 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -4304,7 +4304,7 @@ function system_update_6027() {
$ret = array();
// Create the blocks.cache column.
- db_add_field($ret, 'blocks', 'cache', array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny'));
+ db_add_field($ret, 'blocks', 'cache', array('type' => 'int', 'not null' => TRUE, 'default' => 1, 'size' => 'tiny'));
// The cache_block table is created in update_fix_d6_requirements() since
// calls to cache_clear_all() would otherwise cause warnings.