Unverified Commit 80027851 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2746541 by quietone, alexpott, maxocub, Wim Leers, mikelutz, jofitz,...

Issue #2746541 by quietone, alexpott, maxocub, Wim Leers, mikelutz, jofitz, masipila, firewaller, Madhura BK, Gábor Hojtsy, catch, heddn, plach, hchonov: Migrate D6 and D7 node revision translations to D8
parent 96a7c8f7
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -741,6 +741,19 @@
 */
$settings['entity_update_backup'] = TRUE;

/**
 * Node migration type.
 *
 * This is used to force the migration system to use the classic node migrations
 * instead of the default complete node migrations. The migration system will
 * use the classic node migration only if there are existing migrate_map tables
 * for the classic node migrations and they contain data. These tables may not
 * exist if you are developing custom migrations and do not want to use the
 * complete node migrations. Set this to TRUE to force the use of the classic
 * node migrations.
 */
$settings['migrate_node_migrate_type_classic'] = FALSE;

/**
 * Load local development override configuration, if available.
 *
+3 −0
Original line number Diff line number Diff line
@@ -24,9 +24,12 @@ process:
    -
      plugin: migration_lookup
      migration:
        - d6_node_complete
        - d6_node
        - d6_node_translation
      source: nid
    -
      plugin: node_complete_node_lookup
    -
      plugin: skip_on_empty
      method: row
+3 −0
Original line number Diff line number Diff line
@@ -25,9 +25,12 @@ process:
    -
      plugin: migration_lookup
      migration:
        - d7_node_complete
        - d7_node
        - d7_node_translation
      source: nid
    -
      plugin: node_complete_node_lookup
    -
      plugin: skip_on_empty
      method: row
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@ provider:
target_types:
  node:
    - d6_node_translation
    - d6_node_complete
# The source plugin will be set by the deriver.
source:
  plugin: empty
+5 −1
Original line number Diff line number Diff line
@@ -11,8 +11,12 @@ process:
  dest_nid:
    -
      plugin: migration_lookup
      migration: d6_node_translation
      migration:
        - d6_node_complete
        - d6_node_translation
      source: nid
    -
      plugin: node_complete_node_translation_lookup
    -
      plugin: skip_on_empty
      method: row
Loading