function statspro_update_6102 in Statistics Pro 6
Same name and namespace in other branches
- 6.2 statspro.install \statspro_update_6102()
Drops the old statspro table.
Return value
array
File
- ./
statspro.install, line 247 - Install file for statistics pro module
Code
function statspro_update_6102() {
$ret = array();
db_drop_table($ret, 'statspro');
db_rename_table($ret, 'statspro_day_to_date_temp', 'statspro');
return $ret;
}