--- database.inc.orig 2010-10-22 13:50:53.331089825 -0400 +++ database.inc 2010-10-22 13:52:15.747089633 -0400 @@ -454,7 +454,6 @@ function db_escape_table($string) { * - '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 @@ function db_escape_table($string) { * 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 @@ function db_escape_table($string) { * 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' =>