You are here

function migrate_update_6016 in Migrate 6

File

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

Code

function migrate_update_6016() {
  $ret = array();
  db_change_field($ret, 'migrate_content_mappings', 'default_value', 'default_value', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => FALSE,
    'default' => '',
  ));
  return $ret;
}