You are here

function biblio_update_6029 in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 biblio.install \biblio_update_6029()
  2. 7 biblio.install \biblio_update_6029()
1 call to biblio_update_6029()
biblio_update_7002 in ./biblio.install
Adds export_map column to biblio_type_maps table

File

./biblio.install, line 1568

Code

function biblio_update_6029() {
  $spec = array(
    'type' => 'blob',
    'not null' => FALSE,
    'default' => NULL,
    'size' => 'big',
    'description' => 'Stores the mapping between biblio fields and external file formats',
  );
  db_add_field('biblio_type_maps', 'export_map', $spec);
}