function file_update_8001

File

drupal/core/modules/file/file.install, line 264
Install, update and uninstall functions for File module.

Code

function file_update_8001() {
  $spec = array(
    'description' => 'The primary key of the object using the file.',
    'type' => 'varchar',
    'length' => 64,
    'not null' => TRUE,
    'default' => '',
  );
  db_change_field('file_usage', 'id', 'id', $spec);
}