function views_calc_update_6000 in Views Calc 6
Same name and namespace in other branches
- 6.3 views_calc.install \views_calc_update_6000()
- 7 views_calc.install \views_calc_update_6000()
File
- ./
views_calc.install, line 130
Code
function views_calc_update_6000() {
$ret = array();
db_add_field($ret, 'views_calc_fields', 'base', array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => 'node',
));
return $ret;
}