Same name and namespace in other branches
  1. 8.x-1.x quicktabs.install \quicktabs_update_7301() 1 comment

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

File

./quicktabs.install, line 163

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