Same name in other branches
- 8.x-1.x quicktabs.install \quicktabs_update_7301()
Add the options field which will hold renderer-specific options.
Fichier
-
./
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";
}