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