diff modules/dblog/dblog.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/dblog/dblog.install	Tue Dec 23 14:32:55 2008 +0100
+++ b/modules/dblog/dblog.install	Thu Jan 15 10:15:56 2009 +0100
@@ -1,5 +1,5 @@
 <?php
-// $Id: dblog.install,v 1.6 2007/11/04 14:33:06 goba Exp $
+// $Id: dblog.install,v 1.6.2.1 2009/01/06 15:46:36 goba Exp $
 
 /**
  * Implementation of hook_install().
@@ -22,37 +22,37 @@
  */
 function dblog_schema() {
   $schema['watchdog'] = array(
-    'description' => t('Table that contains logs of all system events.'),
+    'description' => 'Table that contains logs of all system events.',
     'fields' => array(
       'wid' => array(
         'type' => 'serial',
         'not null' => TRUE,
-        'description' => t('Primary Key: Unique watchdog event ID.'),
+        'description' => 'Primary Key: Unique watchdog event ID.',
       ),
       'uid' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('The {users}.uid of the user who triggered the event.'),
+        'description' => 'The {users}.uid of the user who triggered the event.',
       ),
       'type' => array(
         'type' => 'varchar',
         'length' => 16,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Type of log message, for example "user" or "page not found."'),
+        'description' => 'Type of log message, for example "user" or "page not found."',
       ),
       'message' => array(
         'type' => 'text',
         'not null' => TRUE,
         'size' => 'big',
-        'description' => t('Text of log message to be passed into the t() function.'),
+        'description' => 'Text of log message to be passed into the t() function.',
       ),
       'variables' => array(
         'type' => 'text',
         'not null' => TRUE,
         'size' => 'big',
-        'description' => t('Serialized array of variables that match the message string and that is passed into the t() function.'),
+        'description' => 'Serialized array of variables that match the message string and that is passed into the t() function.',
       ),
       'severity' => array(
         'type' => 'int',
@@ -60,39 +60,39 @@
         'not null' => TRUE,
         'default' => 0,
         'size' => 'tiny',
-        'description' => t('The severity level of the event; ranges from 0 (Emergency) to 7 (Debug)'),
+        'description' => 'The severity level of the event; ranges from 0 (Emergency) to 7 (Debug)',
       ),
       'link' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Link to view the result of the event.'),
+        'description' => 'Link to view the result of the event.',
       ),
       'location'  => array(
         'type' => 'text',
         'not null' => TRUE,
-        'description' => t('URL of the origin of the event.'),
+        'description' => 'URL of the origin of the event.',
       ),
       'referer' => array(
         'type' => 'varchar',
         'length' => 128,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('URL of referring page.'),
+        'description' => 'URL of referring page.',
       ),
       'hostname' => array(
         'type' => 'varchar',
         'length' => 128,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Hostname of the user who triggered the event.'),
+        'description' => 'Hostname of the user who triggered the event.',
       ),
       'timestamp' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('Unix timestamp of when event occurred.'),
+        'description' => 'Unix timestamp of when event occurred.',
       ),
     ),
     'primary key' => array('wid'),