You are here

function filefield_update_6104 in FileField 6.3

Delete the filefield_token module entry in the system table.

File

./filefield.install, line 284

Code

function filefield_update_6104() {
  $ret = array();
  $ret[] = update_sql("DELETE FROM {system} WHERE type = 'module' AND name = 'filefield_token'");
  return $ret;
}