function uc_dropdown_attributes_update_6000 in Dropdown Attributes 6
Adds the {uc_dropdown_classes} table.
File
- ./
uc_dropdown_attributes.install, line 115 - Install, update and uninstall functions for the uc_dropdown_attributes module.
Code
function uc_dropdown_attributes_update_6000() {
$ret = array();
$schema['uc_dropdown_classes'] = array(
'description' => 'Stores attributes that are displayed depending on the value of another attribute.',
'fields' => array(
'pcid' => array(
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'description' => 'Product class id',
),
'aid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Attribute id of child',
),
'parent_aid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Attribute id of parent',
),
'parent_values' => array(
'type' => 'text',
'not null' => TRUE,
'size' => 'normal',
'description' => 'Values of the parent attribute that trigger the dependent attribute',
),
'required' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'size' => 'tiny',
'description' => 'Whether the dependent attribute is optional (0) or required (1)',
),
),
'primary key' => array(
'pcid',
'aid',
),
);
db_create_table($ret, 'uc_dropdown_classes', $schema['uc_dropdown_classes']);
return $ret;
}