diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-06-27 10:48:17 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-06-27 10:48:17 +0000 |
commit | db6d3d79a8a2f0d6c189efb635bc5b4bbf0db059 (patch) | |
tree | e4ed6fb62106929cf5031b6a3aa9b6402fd07a03 /includes | |
parent | ceabe1870e3706bde3f3890d165cdf4e73e2beb2 (diff) | |
download | brdo-db6d3d79a8a2f0d6c189efb635bc5b4bbf0db059.tar.gz brdo-db6d3d79a8a2f0d6c189efb635bc5b4bbf0db059.tar.bz2 |
- Patch #837832 by dereine, marcingy: increase the size of {sessions}.sid.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/update.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/update.inc b/includes/update.inc index 2e29240a2..b27dbff5a 100644 --- a/includes/update.inc +++ b/includes/update.inc @@ -584,7 +584,7 @@ function update_fix_d7_requirements() { } // Add ssid column and index. - db_add_field('sessions', 'ssid', array('description' => "Secure session ID. The value is generated by PHP's Session API.", 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '')); + db_add_field('sessions', 'ssid', array('description' => "Secure session ID. The value is generated by PHP's Session API.", 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '')); db_add_index('sessions', 'ssid', array('ssid')); variable_set('update_d7_requirements', TRUE); |