Mercurial > hg > isophonics-drupal-site
annotate core/modules/taxonomy/migrations/d6_taxonomy_term.yml @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 1fec387a4317 |
children |
rev | line source |
---|---|
Chris@14 | 1 id: d6_taxonomy_term |
Chris@14 | 2 label: Taxonomy terms |
Chris@14 | 3 audit: true |
Chris@14 | 4 migration_tags: |
Chris@14 | 5 - Drupal 6 |
Chris@14 | 6 - Content |
Chris@14 | 7 source: |
Chris@14 | 8 plugin: d6_taxonomy_term |
Chris@14 | 9 process: |
Chris@14 | 10 # If you are using this file to build a custom migration consider removing |
Chris@14 | 11 # the tid field to allow incremental migrations. |
Chris@14 | 12 tid: tid |
Chris@14 | 13 vid: |
Chris@14 | 14 plugin: migration_lookup |
Chris@14 | 15 migration: d6_taxonomy_vocabulary |
Chris@14 | 16 source: vid |
Chris@14 | 17 name: name |
Chris@14 | 18 description: description |
Chris@14 | 19 weight: weight |
Chris@14 | 20 # Only attempt to stub real (non-zero) parents. |
Chris@14 | 21 parent_id: |
Chris@14 | 22 - |
Chris@14 | 23 plugin: skip_on_empty |
Chris@14 | 24 method: process |
Chris@14 | 25 source: parent |
Chris@14 | 26 - |
Chris@14 | 27 plugin: migration_lookup |
Chris@14 | 28 migration: d6_taxonomy_term |
Chris@14 | 29 parent: |
Chris@14 | 30 plugin: default_value |
Chris@14 | 31 default_value: 0 |
Chris@14 | 32 source: '@parent_id' |
Chris@14 | 33 changed: timestamp |
Chris@14 | 34 destination: |
Chris@14 | 35 plugin: entity:taxonomy_term |
Chris@14 | 36 migration_dependencies: |
Chris@14 | 37 required: |
Chris@14 | 38 - d6_taxonomy_vocabulary |