diff modules/statistics/statistics.install @ 19:3edae6ecd6c6 6.9

Drupal 6.9
author Franck Deroche <franck@defr.org>
date Thu, 15 Jan 2009 10:15:56 +0100
parents c1f4ac30525a
children
line wrap: on
line diff
--- a/modules/statistics/statistics.install	Tue Dec 23 14:32:55 2008 +0100
+++ b/modules/statistics/statistics.install	Thu Jan 15 10:15:56 2009 +0100
@@ -1,5 +1,5 @@
 <?php
-// $Id: statistics.install,v 1.13 2007/12/18 12:59:22 dries Exp $
+// $Id: statistics.install,v 1.13.2.1 2009/01/06 15:46:37 goba Exp $
 
 /**
  * Implementation of hook_install().
@@ -49,64 +49,64 @@
  */
 function statistics_schema() {
   $schema['accesslog'] = array(
-    'description' => t('Stores site access information for statistics.'),
+    'description' => 'Stores site access information for statistics.',
     'fields' => array(
       'aid' => array(
         'type' => 'serial',
         'not null' => TRUE,
-        'description' => t('Primary Key: Unique accesslog ID.'),
+        'description' => 'Primary Key: Unique accesslog ID.',
       ),
       'sid' => array(
         'type' => 'varchar',
         'length' => 64,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Browser session ID of user that visited page.'),
+        'description' => 'Browser session ID of user that visited page.',
       ),
       'title' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => FALSE,
-        'description' => t('Title of page visited.'),
+        'description' => 'Title of page visited.',
       ),
       'path' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => FALSE,
-        'description' => t('Internal path to page visited (relative to Drupal root.)'),
+        'description' => 'Internal path to page visited (relative to Drupal root.)',
       ),
       'url' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => FALSE,
-        'description' => t('Referrer URI.'),
+        'description' => 'Referrer URI.',
       ),
       'hostname' => array(
         'type' => 'varchar',
         'length' => 128,
         'not null' => FALSE,
-        'description' => t('Hostname of user that visited the page.'),
+        'description' => 'Hostname of user that visited the page.',
       ),
       'uid' => array(
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => FALSE,
         'default' => 0,
-        'description' => t('User {users}.uid that visited the page.'),
+        'description' => 'User {users}.uid that visited the page.',
       ),
       'timer' => array(
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('Time in milliseconds that the page took to load.'),
+        'description' => 'Time in milliseconds that the page took to load.',
       ),
       'timestamp' => array(
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('Timestamp of when the page was visited.'),
+        'description' => 'Timestamp of when the page was visited.',
       ),
     ),
     'indexes' => array(