You are here

function statspro_update_6102 in Statistics Pro 6.2

Same name and namespace in other branches
  1. 6 statspro.install \statspro_update_6102()

Drops the old statspro table.

Return value

array

File

./statspro.install, line 309
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;
}