You are here

function course_update_6131 in Course 7.2

Same name and namespace in other branches
  1. 6 course.install \course_update_6131()
  2. 7 course.install \course_update_6131()

Change fulfillment info to serialized.

File

./course.install, line 774
course.install Install and update functions for Courses.

Code

function course_update_6131() {
  $ret = array();
  db_change_field('course_outline_fulfillment', 'info', 'info', array(
    'type' => 'text',
  ));

  // hook_update_N() no longer returns a $ret array. Instead, return
  // nothing or a translated string indicating the update ran successfully.
  // See http://drupal.org/node/224333#update_sql.
  return t('TODO Add a descriptive string here to show in the UI.');
}