function fillpdf_update_7101 in FillPDF 7
Same name and namespace in other branches
- 7.2 fillpdf.install \fillpdf_update_7101()
Add administrative title; make title longer.
File
- ./fillpdf.install, line 272 
- Install.
Code
function fillpdf_update_7101() {
  $schema = drupal_get_schema_unprocessed('fillpdf', 'fillpdf_forms');
  if (!db_field_exists('fillpdf_forms', 'admin_title')) {
    db_add_field('fillpdf_forms', 'admin_title', $schema['fields']['admin_title']);
  }
  db_change_field('fillpdf_forms', 'title', 'title', $schema['fields']['title']);
}