update_132
- Versions
- 4.6
update_132()
Cid matching by MySQL should be case-sensitive.
Code
database/updates.inc, line 2400
<?php
function update_132() {
$ret = array();
if ($GLOBALS['db_type'] == 'mysql') {
$ret[] = update_sql("ALTER TABLE {cache} CHANGE cid cid varchar(255) BINARY NOT NULL default ''");
}
return $ret;
}
?>Login or register to post comments 