function boost_update_6129 in Boost 6
Update 6129 Remove unique key on hash in boost_crawler.
File
- ./
boost.install, line 1591 - Handles Boost module installation and upgrade tasks.
Code
function boost_update_6129() {
$ret = array();
db_drop_unique_key($ret, 'boost_crawler', 'hash');
db_add_index($ret, 'boost_crawler', 'hash', array(
'hash',
));
return $ret;
}