You are here

function quicktabs_update_7301 in Quick Tabs 7.3

Add the options field which will hold renderer-specific options.

File

./quicktabs.install, line 163
Install, update and uninstall functions for the quicktabs module.

Code

function quicktabs_update_7301() {
  $options_field = array(
    'description' => 'A serialized array of the options for this qt instance.',
    'type' => 'text',
    'size' => 'medium',
    'not null' => FALSE,
    'serialize' => TRUE,
  );
  db_add_field('quicktabs', 'options', $options_field);
  return "Added the options field";
}