You are here

function google_analytics_counter_update_7301 in Google Analytics Counter 7.3

Add the google_analytics_counter_storage table.

File

./google_analytics_counter.install, line 100
Update, and uninstall functions for the Google Analytics Counter module.

Code

function google_analytics_counter_update_7301() {
  if (!db_table_exists('google_analytics_counter_storage')) {
    $schema = google_analytics_counter_schema();
    db_create_table('google_analytics_counter_storage', $schema['google_analytics_counter_storage']);
    return st('Add the google_analytics_counter_storage table for the Google Analytics Counter module.');
  }
}