You are here

function ga_stats_update_7102 in Google Analytics Statistics 7

Same name and namespace in other branches
  1. 7.2 ga_stats.install \ga_stats_update_7102()

Change the url field to accept longer urls.

File

./ga_stats.install, line 146

Code

function ga_stats_update_7102(&$sandbox) {
  db_change_field('ga_stats_count', 'url', 'url', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => FALSE,
    'description' => 'url of page',
  ));
}