You are here

function course_update_6136 in Course 7.2

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

Remove duplicate field that was never used.

File

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

Code

function course_update_6136() {
  $ret = array();
  if (db_field_exists('course_outline', 'config')) {
    db_drop_field('course_outline', 'config');
  }
  return t('Remove duplicate field that was never used.');
}