You are here

function browscap_update_6200 in Browscap 6.2

Drop the unused Browscap 1.x statistics table.

File

./browscap.install, line 63
Install, update and uninstall functions for the Browscap module.

Code

function browscap_update_6200() {
  $ret = array();
  db_drop_table($ret, 'browscap_statistics');
  return $ret;
}