You are here

function quicktabs_update_6003 in Quick Tabs 6.3

Same name and namespace in other branches
  1. 6.2 quicktabs.install \quicktabs_update_6003()

Add style column.

File

./quicktabs.install, line 166

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;
}