Mercurial > defr > drupal > core
diff modules/upload/upload.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/upload/upload.install Tue Dec 23 14:32:55 2008 +0100 +++ b/modules/upload/upload.install Thu Jan 15 10:15:56 2009 +0100 @@ -1,5 +1,5 @@ <?php -// $Id: upload.install,v 1.6.2.1 2008/02/08 18:01:14 goba Exp $ +// $Id: upload.install,v 1.6.2.2 2009/01/06 15:46:38 goba Exp $ /** * Implementation of hook_install(). @@ -26,35 +26,35 @@ */ function upload_schema() { $schema['upload'] = array( - 'description' => t('Stores uploaded file information and table associations.'), + 'description' => 'Stores uploaded file information and table associations.', 'fields' => array( 'fid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: The {files}.fid.'), + 'description' => 'Primary Key: The {files}.fid.', ), 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {node}.nid associated with the uploaded file.'), + 'description' => 'The {node}.nid associated with the uploaded file.', ), 'vid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: The {node}.vid associated with the uploaded file.'), + 'description' => 'Primary Key: The {node}.vid associated with the uploaded file.', ), 'description' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Description of the uploaded file.'), + 'description' => 'Description of the uploaded file.', ), 'list' => array( 'type' => 'int', @@ -62,14 +62,14 @@ 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Whether the file should be visibly listed on the node: yes(1) or no(0).'), + 'description' => 'Whether the file should be visibly listed on the node: yes(1) or no(0).', ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => t('Weight of this upload in relation to other uploads in this node.'), + 'description' => 'Weight of this upload in relation to other uploads in this node.', ), ), 'primary key' => array('vid', 'fid'),