function comment_notify_update_6002 in Comment Notify 6
Drop the notify column from the {comments} table. This column will only exist if the 5.x-1.x version of comment_notify was installed at some point. Since the 5.x-2.x version of the module {comment_notify}.notify has been used instead.
File
- ./
comment_notify.install, line 135 - comment_notify.install.
Code
function comment_notify_update_6002() {
$ret = array();
if (db_column_exists('comments', 'notify')) {
db_drop_field($ret, 'comments', 'notify');
}
return $ret;
}