You are here

social_content.install in Social Content 7

Same filename and directory in other branches
  1. 7.2 social_content.install

Social content installation.

File

social_content.install
View source
<?php

/**
 * @file
 * Social content installation.
 */

/**
 * Add the social_content_history table for the social_content module.
 */
function social_content_update_7001() {
  db_create_table('social_content_history', drupal_get_schema_unprocessed('social_content', 'social_content_history'));
  return 'Add the social_content_history table for the social_content module.';
}

/**
 * Drop the 'social_content_history' table.
 */
function social_content_update_7002() {
  variable_del('social_content_twitter');
  variable_del('social_content_instagram');
  db_drop_table('social_content_history');
}

Functions

Namesort descending Description
social_content_update_7001 Add the social_content_history table for the social_content module.
social_content_update_7002 Drop the 'social_content_history' table.