You are here

function performance_update_1 in Performance Logging and Monitoring 6.2

Same name and namespace in other branches
  1. 6 performance.install \performance_update_1()

Remove title field from performance tables.

File

./performance.install, line 213
Install and update for Performance Logging

Code

function performance_update_1() {
  $ret = array();
  db_drop_field($ret, 'performance_detail', 'title');
  db_drop_field($ret, 'performance_summary', 'title');
  return $ret;
}