You are here

function search_files_update_6202 in Search Files 7.2

Same name and namespace in other branches
  1. 6.2 search_files.install \search_files_update_6202()

File

./search_files.install, line 49
Installation and update procedures for the search_files module.

Code

function search_files_update_6202() {
  $ret = array();
  db_change_field($ret, 'search_files_helpers', 'helper_path', 'helper_path', array(
    'type' => 'varchar',
    'length' => '255',
    'not null' => TRUE,
  ));
  return $ret;
}