You are here

function migrate_update_6007 in Migrate 6

File

./migrate.install, line 409
Implementation of profile destination handling

Code

function migrate_update_6007() {
  $ret = array();
  db_add_field($ret, 'migrate_content_sets', 'multiple_separator', array(
    'type' => 'char',
    'length' => 1,
    'not null' => TRUE,
    'default' => ',',
  ));
  return $ret;
}