diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-30 15:31:46 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-30 15:31:46 +0000 |
commit | 4e0071fb8a44c5a91f46638a8414379fa68dad04 (patch) | |
tree | 71d08d03cbefb370701a758f21078b47ffefe0f4 /modules/system/system.install | |
parent | bfb72d0ec913b9ba423c6c252fb274929d08e2f3 (diff) | |
download | brdo-4e0071fb8a44c5a91f46638a8414379fa68dad04.tar.gz brdo-4e0071fb8a44c5a91f46638a8414379fa68dad04.tar.bz2 |
#111127 rollback by chx, slightly extended: roll back node_load cache, it needs more thought and discussion, so postponed until at least Drupal 7
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 1421ecc2d..0479a5992 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3698,24 +3698,8 @@ function system_update_6027() { * Add the node load cache table. */ function system_update_6028() { - $ret = array(); - - // Create the cache_node table. - $schema['cache_node'] = 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_node', $schema['cache_node']); - - return $ret; + // Removed node_load cache to discuss it more for Drupal 7. + return array(); } /** |