You are here

function google_analytics_counter_update_7201 in Google Analytics Counter 7.2

Same name and namespace in other branches
  1. 7.3 google_analytics_counter.install \google_analytics_counter_update_7201()

Add the google_analytics_counter table for the Google Analytics Counter module.

File

./google_analytics_counter.install, line 91
Install, update, and uninstall functions for the Google Analytics Counter module.

Code

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