You are here

function twitter_pull_schema in Twitter Pull 7

Same name and namespace in other branches
  1. 6.2 twitter_pull.install \twitter_pull_schema()
  2. 6 twitter_pull.install \twitter_pull_schema()
  3. 7.2 twitter_pull.install \twitter_pull_schema()

Implements hook_schema().

File

./twitter_pull.install, line 11
Installation routines for the Twitter Pull module.

Code

function twitter_pull_schema() {
  $schema['cache_pulled_tweets'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_pulled_tweets']['description'] = 'Cache table for the tweets pulled by Twitter Pull module';
  return $schema;
}