function course_update_6136 in Course 7
Same name and namespace in other branches
- 6 course.install \course_update_6136()
- 7.2 course.install \course_update_6136()
Remove duplicate field that was never used.
File
- ./
course.install, line 945 - 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.');
}