system_update_147
- Versions
- 4.7 – 5
system_update_147()
Code
database/updates.inc, line 806
<?php
function system_update_147() {
$ret = array();
// this update is mysql only, pgsql should get it right in the first try.
if ($GLOBALS['db_type'] == 'mysql') {
$ret[] = update_sql("ALTER TABLE {node_revisions} DROP type");
}
return $ret;
}
?>Login or register to post comments 