function quicktabs_update_6003 in Quick Tabs 6.2
Same name and namespace in other branches
- 6.3 quicktabs.install \quicktabs_update_6003()
Add style column.
File
- ./
quicktabs.install, line 168
Code
function quicktabs_update_6003() {
$ret = array();
db_add_field($ret, 'quicktabs', 'style', array(
'description' => 'The tab style.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'initial' => 'default',
));
return $ret;
}