Index: includes/database.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/Attic/database.inc,v retrieving revision 1.92.2.10 diff -u -r1.92.2.10 database.inc --- includes/database.inc 6 Aug 2010 11:05:03 -0000 1.92.2.10 +++ includes/database.inc 22 Oct 2010 20:05:06 -0000 @@ -454,7 +454,6 @@ * - 'fields': An associative array ('fieldname' => specification) * that describes the table's database columns. The specification * is also an array. The following specification parameters are defined: - * * - 'description': A string describing this field and its purpose. * References to other tables should be enclosed in * curly-brackets. For example, the node table vid field @@ -473,7 +472,6 @@ * datatypes will be used (e.g. on MySQL, TINYINT vs. INT vs. BIGINT). * 'normal', the default, selects the base type (e.g. on MySQL, * INT, VARCHAR, BLOB, etc.). - * * Not all sizes are available for all data types. See * db_type_map() for possible combinations. * - 'not null': If true, no NULL values will be allowed in this @@ -492,10 +490,8 @@ * the precision (total number of significant digits) and scale * (decimal digits right of the decimal point). Both values are * mandatory. Ignored for other field types. - * * All parameters apart from 'type' are optional except that type * 'numeric' columns must specify 'precision' and 'scale'. - * * - 'primary key': An array of one or more key column specifiers (see below) * that form the primary key. * - 'unique keys': An associative array of unique keys ('keyname' =>