function follow_update_5000 in Follow 5
Add the title column.
File
- ./
follow.install, line 44 - Follow module's install and uninstall code.
Code
function follow_update_5000() {
$ret = array();
$ret[] = update_sql("ALTER TABLE {follow_links} ADD title varchar(255) default '' NOT NULL");
return $ret;
}