function twitter_update_6501 in Twitter 6.5
Adds field mentions to twitter_account table.
File
- ./
twitter.install, line 841 - Install, update and uninstall functions for the twitter module.
Code
function twitter_update_6501() {
$ret = array();
$data = array(
'description' => "Boolean flag indicating whether the {twitter_user}'s mentions should be pulled in by the site.",
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
);
db_add_field($ret, 'twitter_account', 'mentions', $data);
return $ret;
}