You are here

function field_conditional_state_schema in Field Conditional States 7.2

Same name and namespace in other branches
  1. 7 field_conditional_state.install \field_conditional_state_schema()

Implements hook_schema().

File

./field_conditional_state.install, line 22
Install function for the field_conditional_state module.

Code

function field_conditional_state_schema() {
  $schema['field_conditional_state'] = array(
    'fields' => array(
      'id' => array(
        'type' => 'serial',
        'not null' => TRUE,
        'description' => 'The internal identifier condition.',
      ),
      'group_id' => array(
        'type' => 'int',
        'not null' => TRUE,
        'description' => 'The field conditional states group id.',
      ),
      'control_field' => array(
        'type' => 'varchar',
        'length' => '255',
        'not null' => TRUE,
        'description' => 'The control field name.',
      ),
      'trigger_state' => array(
        'type' => 'varchar',
        'length' => '15',
        'not null' => TRUE,
        'description' => 'The trigger state.',
      ),
      'trigger_value' => array(
        'type' => 'text',
        'not null' => TRUE,
        'description' => 'The trigger value.',
      ),
    ),
    'primary key' => array(
      'id',
    ),
    'foreign keys' => array(
      'field_conditional_states_group' => array(
        'table' => 'field_conditional_states_group',
        'columns' => array(
          'group_id' => 'group_id',
        ),
      ),
    ),
  );
  $schema['field_conditional_states_group'] = array(
    'fields' => array(
      'group_id' => array(
        'type' => 'serial',
        'not null' => TRUE,
        'description' => 'The internal identifier.',
      ),
      'state' => array(
        'type' => 'varchar',
        'length' => '15',
        'not null' => TRUE,
        'description' => '',
      ),
      'entity_type' => array(
        'type' => 'varchar',
        'length' => '255',
        'not null' => TRUE,
        'description' => '',
      ),
      'bundle' => array(
        'type' => 'varchar',
        'length' => '255',
        'not null' => TRUE,
        'description' => '',
      ),
      'field_name' => array(
        'type' => 'varchar',
        'length' => '255',
        'not null' => TRUE,
        'description' => '',
      ),
      'type' => array(
        'type' => 'varchar',
        'length' => '3',
        'not null' => TRUE,
        'description' => 'The logical connection.',
      ),
    ),
    'primary key' => array(
      'group_id',
    ),
  );
  return $schema;
}