diff options
-rw-r--r-- | modules/system/system.install | 2 | ||||
-rw-r--r-- | update.php | 2 |
2 files changed, 2 insertions, 2 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', diff --git a/update.php b/update.php index f43b0048d..09b3b8eaf 100644 --- a/update.php +++ b/update.php @@ -713,7 +713,7 @@ function update_create_cache_tables() { INDEX expire (expire) ) /*!40100 DEFAULT CHARACTER SET UTF8 */ "); $ret[] = update_sql("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', |