You are here

function js_injector_update_6000 in JS injector 6.2

Removes file path field from table.

File

./js_injector.install, line 80
Install file for js_injector.

Code

function js_injector_update_6000() {
  $ret = array();
  db_drop_field($ret, 'js_injector_rule', 'file_path');
  return $ret;
}