You are here

function fillpdf_update_6004 in FillPDF 6

Add database field to hold "Redirect to saved file" setting.

File

./fillpdf.install, line 80
Install

Code

function fillpdf_update_6004() {
  $ret = array();
  db_add_field($ret, 'fillpdf_forms', 'destination_redirect', array(
    'type' => 'int',
    'size' => 'tiny',
    'unsigned' => TRUE,
    'not null' => FALSE,
  ));
  return $ret;
}