~canonical-sysadmins/drupal/6.x

« back to all changes in this revision

Viewing changes to modules/system/system.install

  • Committer: Manuel Seelaus
  • Date: 2016-06-27 16:17:08 UTC
  • Revision ID: manuel.seelaus@canonical.com-20160627161708-6hhgvvif67euqw19
importĀ drupalĀ 6.38

Show diffs side-by-side

added added

removed removed

Lines of Context:
1061
1061
        'default' => 0),
1062
1062
      'session' => array(
1063
1063
        'description' => 'The serialized contents of $_SESSION, an array of name/value pairs that persists across page requests by this session ID. Drupal loads $_SESSION from here at the start of each request and saves it at the end.',
1064
 
        'type' => 'text',
 
1064
        'type' => 'blob',
1065
1065
        'not null' => FALSE,
1066
1066
        'size' => 'big')
1067
1067
      ),
2737
2737
}
2738
2738
 
2739
2739
/**
 
2740
 * Convert {session} data storage to blob.
 
2741
 */
 
2742
function system_update_6056() {
 
2743
  $ret = array();
 
2744
  db_change_field($ret, 'sessions', 'session', 'session', array('type' => 'blob', 'not null' => FALSE, 'size' => 'big'));
 
2745
  return $ret;
 
2746
}
 
2747
 
 
2748
/**
2740
2749
 * @} End of "defgroup updates-6.x-extra".
2741
2750
 * The next series of updates should start at 7000.
2742
2751
 */