You are here

function twitter_update_6000 in Twitter 6.5

Same name and namespace in other branches
  1. 6.2 twitter.install \twitter_update_6000()
  2. 6.3 twitter.install \twitter_update_6000()
  3. 6.4 twitter.install \twitter_update_6000()

Previous versions of the Twitter module had no database schema. We're safe just running the basic install for update_1.

File

./twitter.install, line 392
Install, update and uninstall functions for the twitter module.

Code

function twitter_update_6000() {
  $ret = array();
  twitter_install();
  return $ret;
}