social_content.install in Social Content 7
Same filename and directory in other branches
Social content installation.
File
social_content.installView 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
Name![]() |
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. |