You are here

function performance_uninstall in Performance Logging and Monitoring 5

Same name and namespace in other branches
  1. 6.2 performance.install \performance_uninstall()
  2. 6 performance.install \performance_uninstall()
  3. 7.2 performance.install \performance_uninstall()
  4. 7 performance.install \performance_uninstall()

File

./performance.install, line 79

Code

function performance_uninstall() {
  db_query("DROP TABLE {performance_detail}");
  db_query("DROP TABLE {performance_summary}");
  db_query("DELETE FROM {variable} WHERE name LIKE 'performance%'");
}