You are here

function feeds_update_6001 in Feeds 6

Same name and namespace in other branches
  1. 7 feeds.install \feeds_update_6001()

Remove class field on feeds_config.

File

./feeds.install, line 273
Schema definitions install/update/uninstall hooks.

Code

function feeds_update_6001() {
  $ret = array();
  db_drop_field($ret, 'feeds_config', 'class');
  return $ret;
}