You are here

function biblio_update_7014 in Bibliography Module 7.2

Same name and namespace in other branches
  1. 7 biblio.install \biblio_update_7014()

Widen the biblio_date column to 64 characters

File

./biblio.install, line 1815

Code

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