You are here

function fillpdf_update_6001 in FillPDF 6

Add the destination_path field to {fillpdf_forms}.

File

./fillpdf.install, line 45
Install

Code

function fillpdf_update_6001() {
  $ret = array();
  db_add_field($ret, 'fillpdf_forms', 'destination_path', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => FALSE,
  ));
  return $ret;
}