You are here

function biblio_citeproc_update_7003 in Bibliography Module 7

Adds "changed" and "updated" columns.

File

modules/CiteProc/biblio_citeproc.install, line 365

Code

function biblio_citeproc_update_7003() {
  $spec = array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
  );
  db_add_field('biblio_citeproc_styles', 'changed', $spec);
  db_add_field('biblio_citeproc_styles', 'updated', $spec);
}