You are here

function shareaholic_update_7300 in Share Buttons, Related Posts, Content Analytics - Shareaholic 8

Same name and namespace in other branches
  1. 7.3 shareaholic.install \shareaholic_update_7300()

This update will add the new shareaholic content settings table for installs 7.x-3.3 and earlier

File

./shareaholic.install, line 77

Code

function shareaholic_update_7300() {
  if (!db_table_exists('shareaholic_content_settings')) {
    $schema = ShareaholicContentSettings::schema();
    db_create_table('shareaholic_content_settings', $schema['shareaholic_content_settings']);
  }
  return t('Database table shareaholic_content_settings created');
}