You are here

function biblio_update_6036 in Bibliography Module 6.2

Update ...

This update function ...

Return value

array An array of associaive arrays with 'success' and 'query' keys.

File

./biblio.install, line 2737
Install, update, and uninstall functions for the biblio module.

Code

function biblio_update_6036() {
  $result = array();
  $spec = array(
    'type' => 'varchar',
    'not null' => FALSE,
    'length' => '64',
    'description' => '',
  );
  db_change_field($result, 'biblio', 'biblio_date', 'biblio_date', $spec);
  return $result;
}