function fillpdf_update_7005 in FillPDF 7.2
Same name and namespace in other branches
- 7 fillpdf.install \fillpdf_update_7005()
Add database field to hold "Redirect to saved file" setting.
File
- ./
fillpdf.install, line 208 - Install
Code
function fillpdf_update_7005() {
if (!db_field_exists('fillpdf_forms', 'destination_redirect')) {
db_add_field('fillpdf_forms', 'destination_redirect', array(
'type' => 'int',
'size' => 'tiny',
'unsigned' => TRUE,
'not null' => FALSE,
));
}
}