You are here

function brightcove_field_field_schema in Brightcove Video Connect 7.5

Same name and namespace in other branches
  1. 7.2 brightcove_field/brightcove_field.install \brightcove_field_field_schema()
  2. 7.3 brightcove_field/brightcove_field.install \brightcove_field_field_schema()
  3. 7.4 brightcove_field/brightcove_field.install \brightcove_field_field_schema()

Implements hook_field_schema().

File

brightcove_field/brightcove_field.install, line 10
Schema and update funciton for the module.

Code

function brightcove_field_field_schema() {
  return array(
    'columns' => array(
      'brightcove_id' => array(
        'type' => 'varchar',
        'length' => 15,
        'not null' => FALSE,
      ),
      'player' => array(
        'type' => 'varchar',
        'length' => 255,
        'not null' => FALSE,
      ),
    ),
    'indexes' => array(
      'brightcove_id' => array(
        'brightcove_id',
      ),
    ),
  );
}