You are here

function twitter_update_7402 in Twitter 7.6

Same name and namespace in other branches
  1. 7.5 twitter.install \twitter_update_7402()

Makes the import field not enabled by default at twitter_account table.

File

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

Code

function twitter_update_7402() {
  $spec = array(
    'description' => "Boolean flag indicating whether the {twitter_user}'s posts should be pulled in by the site.",
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 0,
  );
  db_change_field('twitter_account', 'import', 'import', $spec);
}