You are here

function quiz_update_6300 in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 quiz.install \quiz_update_6300()
  2. 6.3 quiz.install \quiz_update_6300()
  3. 6.4 quiz.install \quiz_update_6300()

Implementation of hook_update_N(). Add aid to quiz_node_properties table.

File

./quiz.install, line 85
Quiz install schema for installing the quiz module

Code

function quiz_update_6300() {
  $result = array();
  db_add_field($result, 'quiz_node_properties', 'aid', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
  ));
  return $result;
}