You are here

function brightcove_update_7008 in Brightcove Video Connect 7.5

Add responsive flag to players.

File

./brightcove.install, line 289
Installation file for Brightcove module.

Code

function brightcove_update_7008() {
  $spec = array(
    'type' => 'int',
    'size' => 'tiny',
    'not null' => TRUE,
    'default' => 0,
  );
  db_add_field('brightcove_player', 'responsive', $spec);

  // Clear schema cache.
  cache_clear_all('schema', 'cache', TRUE);
}