You are here

public function MigrateFieldMapping::dedupe in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 includes/field_mapping.inc \MigrateFieldMapping::dedupe()

File

includes/field_mapping.inc, line 214
The MigrateFieldMapping class - tracking mappings between source and destination.

Class

MigrateFieldMapping
@file The MigrateFieldMapping class - tracking mappings between source and destination.

Code

public function dedupe($table, $column) {
  $this->dedupe = array(
    'table' => $table,
    'column' => $column,
  );
  return $this;
}