You are here

function biblio_update_7014 in Bibliography Module 7

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

Widen the biblio_date column to 64 characters.

1 call to biblio_update_7014()
biblio_update_7023 in ./biblio.install
Re-apply update 7014 in case the install happened after 7014 was implemented. The main scheme definition was not changed at that time to match the update resulting a schema mismatch.

File

./biblio.install, line 2207

Code

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