From e7ac5c58fd101d0de71a1397dd5b33f1b62c5fc7 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Mon, 15 Sep 2008 09:28:50 +0000 Subject: #308434 by drewish, dopry, quicksketch, aaron, jhedstrom, and friends: Massive file.inc cleanup aaaaaand... tests! Yay! :D --- modules/system/system.install | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/system/system.install') diff --git a/modules/system/system.install b/modules/system/system.install index e133d55ec..af2ceab33 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -629,7 +629,7 @@ function system_schema() { 'description' => t('Stores information for uploaded files.'), 'fields' => array( 'fid' => array( - 'description' => t('Primary Key: Unique files ID.'), + 'description' => t('File ID.'), 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, @@ -642,7 +642,7 @@ function system_schema() { 'default' => 0, ), 'filename' => array( - 'description' => t('Name of the file.'), + 'description' => t('Name of the file with no path components. This may differ from the basename of the filepath if the file is renamed to avoid overwriting an existing file.'), 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, @@ -656,7 +656,7 @@ function system_schema() { 'default' => '', ), 'filemime' => array( - 'description' => t('The file MIME type.'), + 'description' => t("The file's MIME type."), 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, @@ -670,7 +670,7 @@ function system_schema() { 'default' => 0, ), 'status' => array( - 'description' => t('A flag indicating whether file is temporary (1) or permanent (0).'), + 'description' => t('A bitmapped field indicating the status of the file the least sigifigant bit indicates temporary (1) or permanent (0). Temporary files older than DRUPAL_MAXIMUM_TEMP_FILE_AGE will be removed during a cron run.'), 'type' => 'int', 'not null' => TRUE, 'default' => 0, -- cgit v1.2.3