You are here

function field_object_update_7001 in Corresponding Entity References 7.3

Fixes issue #2331553, and probably others.

File

field_object/field_object.install, line 21

Code

function field_object_update_7001() {
  db_update('field_config')
    ->fields(array(
    'type' => 'field_object',
    'module' => 'field_object',
  ))
    ->condition('field_name', array(
    'cer_left',
    'cer_right',
  ))
    ->execute();
}