You are here

function quicktabs_update_6001 in Quick Tabs 6.2

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

Update to 6.x-2.x.

File

./quicktabs.install, line 98

Code

function quicktabs_update_6001() {
  $ret = array();
  db_add_field($ret, 'quicktabs', 'ajax', array(
    'description' => 'Whether this is an ajax views block',
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}