You are here

function quicktabs_update_6206 in Quick Tabs 6.2

Same name and namespace in other branches
  1. 6.3 quicktabs.install \quicktabs_update_6206()

Add default_tab column.

File

./quicktabs.install, line 211

Code

function quicktabs_update_6206() {
  $ret = array();
  db_add_field($ret, 'quicktabs', 'default_tab', array(
    'description' => 'The default tab.',
    'type' => 'int',
    'size' => 'tiny',
    'unsigned' => TRUE,
    'not null' => TRUE,
  ));
  return $ret;
}