function comment_notify_update_4 in Comment Notify 5.2
Same name and namespace in other branches
- 5 comment_notify.install \comment_notify_update_4()
File
- ./comment_notify.install, line 115 
- comment_notify.install.
Code
function comment_notify_update_4() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {comments} MODIFY notify tinyint(1) NOT NULL DEFAULT '0'");
  return $ret;
}