You are here

function follow_update_6002 in Follow 6

Drop old schema column.

File

./follow.install, line 158
Follow module's install and uninstall code.

Code

function follow_update_6002() {
  $ret = array();
  db_drop_field($ret, 'follow_links', 'url');
  return $ret;
}