function course_update_6131 in Course 7
Same name and namespace in other branches
- 6 course.install \course_update_6131()
 - 7.2 course.install \course_update_6131()
 
Change fulfillment info to serialized.
File
- ./
course.install, line 771  - 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.');
}