summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/system.install')
-rw-r--r--modules/system/system.install20
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();
}
/**