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

Drupal 6.9
author Franck Deroche <franck@defr.org>
date Thu, 15 Jan 2009 10:15:56 +0100
parents acef7ccb09b5
children
line wrap: on
line diff
--- a/modules/blogapi/blogapi.install	Tue Dec 23 14:32:55 2008 +0100
+++ b/modules/blogapi/blogapi.install	Thu Jan 15 10:15:56 2009 +0100
@@ -1,5 +1,5 @@
 <?php
-// $Id: blogapi.install,v 1.1.2.1 2008/08/13 23:59:12 drumm Exp $
+// $Id: blogapi.install,v 1.1.2.2 2009/01/06 15:46:36 goba Exp $
 
 /**
  * Implementation of hook_install().
@@ -24,26 +24,26 @@
 function blogapi_schema() {
   //This table was introduced in Drupal 6.4
   $schema['blogapi_files'] = array(
-    'description' => t('Stores information for files uploaded via the blogapi.'),
+    'description' => 'Stores information for files uploaded via the blogapi.',
     'fields' => array(
       'fid' => array(
-        'description' => t('Primary Key: Unique file ID.'),
+        'description' => 'Primary Key: Unique file ID.',
         'type' => 'serial',
       ),
       'uid' => array(
-        'description' => t('The {users}.uid of the user who is associated with the file.'),
+        'description' => 'The {users}.uid of the user who is associated with the file.',
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
         'default' => 0),
       'filepath' => array(
-        'description' => t('Path of the file relative to Drupal root.'),
+        'description' => 'Path of the file relative to Drupal root.',
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => ''),
       'filesize' => array(
-        'description' => t('The size of the file in bytes.'),
+        'description' => 'The size of the file in bytes.',
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
@@ -79,26 +79,26 @@
  */
 function blogapi_update_6001() {
     $schema['blogapi_files'] = array(
-    'description' => t('Stores information for files uploaded via the blogapi.'),
+    'description' => 'Stores information for files uploaded via the blogapi.',
     'fields' => array(
       'fid' => array(
-        'description' => t('Primary Key: Unique file ID.'),
+        'description' => 'Primary Key: Unique file ID.',
         'type' => 'serial',
       ),
       'uid' => array(
-        'description' => t('The {users}.uid of the user who is associated with the file.'),
+        'description' => 'The {users}.uid of the user who is associated with the file.',
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
         'default' => 0),
       'filepath' => array(
-        'description' => t('Path of the file relative to Drupal root.'),
+        'description' => 'Path of the file relative to Drupal root.',
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => ''),
       'filesize' => array(
-        'description' => t('The size of the file in bytes.'),
+        'description' => 'The size of the file in bytes.',
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,