You are here

twitter_pull.install in Twitter Pull 7

Installation routines for the Twitter Pull module.

File

twitter_pull.install
View source
<?php

/**
 * @file
 * Installation routines for the Twitter Pull module.
 */

/**
 * Implements hook_schema().
 */
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;
}
function twitter_pull__update_7101() {
  cache_clear_all('cache_pulled_tweets');
}

Functions