diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-28 20:52:51 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-28 20:52:51 +0000 |
commit | dcd80a6f3f90ce4e6bcb36e6f4bfeec9c8619940 (patch) | |
tree | 680129df4fdc0d354ab77d88c7827b9631962687 /modules/system/system.install | |
parent | e6effba7806bea7aa54c6329c81057e15fc2f5ff (diff) | |
download | brdo-dcd80a6f3f90ce4e6bcb36e6f4bfeec9c8619940.tar.gz brdo-dcd80a6f3f90ce4e6bcb36e6f4bfeec9c8619940.tar.bz2 |
#99970 by Heine. Make page cache keys case-sensitive on MySQL.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 3f243d699..caafe15ca 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -189,7 +189,7 @@ function system_install() { INDEX expire (expire) ) /*!40100 DEFAULT CHARACTER SET UTF8 */ "); db_query("CREATE TABLE {cache_page} ( - cid varchar(255) NOT NULL default '', + cid varchar(255) BINARY NOT NULL default '', data longblob, expire int NOT NULL default '0', created int NOT NULL default '0', |