You are here

function bbb_update_6101 in BigBlueButton 6

Implement hook_update_N().

File

./bbb.install, line 139
Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.

Code

function bbb_update_6101() {
  $ret = array();

  // Update database schema API v0.7
  db_add_field($ret, 'bbb_meetings', 'voiceBridge', array(
    'type' => 'int',
    'not null' => TRUE,
    'description' => t('Voice conference number that participants enter to join the voice conference.'),
  ));
  return $ret;
}