function performance_update_2 in Performance Logging and Monitoring 6.2
Same name and namespace in other branches
- 6 performance.install \performance_update_2()
Add data field to performance_detail table.
File
- ./
performance.install, line 224 - Install and update for Performance Logging
Code
function performance_update_2() {
$ret = array();
db_add_field($ret, 'performance_detail', 'data', array(
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
));
return $ret;
}