Index: project_release.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/project/release/project_release.install,v retrieving revision 1.22 diff -r1.22 project_release.install 105a106,112 > 'downloads' => array( > 'description' => t('The number of times this module was downloaded.'), > 'type' => 'int', > 'unsigned' => FALSE, > 'not null' => FALSE, > 'default' => NULL, > ), 371a379,393 > /** > * Add the 'downloads' field to the {cache_project_nodes} table. > */ > function project_release_update_6004() { > $ret = array(); > $spec = array( > 'type' => 'int', > 'unsigned' => FALSE, > 'not null' => FALSE, > 'default' => NULL, > ); > db_add_field($ret, 'project_release_nodes', 'downloads', $spec); > return $ret; > } >