You are here

function biblio_update_7005 in Bibliography Module 7.2

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

Add information to manage vtabs on input form.

File

./biblio.install, line 1709

Code

function biblio_update_7005() {
  $spec = array(
    'type' => 'int',
    'not null' => TRUE,
    'unsigned' => TRUE,
    'default' => 0,
  );
  db_add_field('biblio_field_type', 'vtab', $spec);
  _biblio_update_field_link_data(array(
    100,
    130,
  ), TRUE);
  cache_clear_all();
}