You are here

function twitter_pull_schema in Twitter Pull 6.2

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

Implementation of hook_schema().

File

./twitter_pull.install, line 25
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;
}