function fb_social_update_7200 in Facebook social plugins integration 7.2
Add new {fb_social_preset} table when upgrading from Drupal 6.x-1.x.
File
- ./
fb_social.install, line 99 - Install, update and uninstall functions for the fb_social module.
Code
function fb_social_update_7200() {
// Only add the table if the table doesn't already exist.
if (!db_table_exists('fb_social_preset')) {
$fb_social_preset = array(
'description' => 'Storage for user-defined fb plugins templates.',
'export' => array(
'key' => 'name',
'identifier' => 'fb_social_preset',
'default hook' => 'fb_social_default_presets',
// Function hook name.
'api' => array(
'owner' => 'fb_social',
'api' => 'fb_social',
// Base name for api include files.
'minimum_version' => 1,
'current_version' => 1,
),
'load callback' => 'fb_social_preset_load',
),
'fields' => array(
'name' => array(
'description' => 'The primary identifier for a plugin preset.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'description' => array(
'description' => 'Description for this plugin preset.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'plugin_type' => array(
'description' => 'Type of this preset.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'settings' => array(
'description' => 'Serialized storage of drupal related plugin settings.',
'type' => 'text',
'serialize' => TRUE,
),
'fb_attrs' => array(
'description' => 'Serialized storage of facebook related plugin settings',
'type' => 'text',
'serialize' => TRUE,
),
),
'primary key' => array(
'name',
),
'indexes' => array(
'type' => array(
'plugin_type',
),
),
);
db_create_table('fb_social_preset', $fb_social_preset);
}
}