You are here

migrate_csv_test.yml in Migrate Source CSV 8.3

tests/modules/migrate_source_csv_test/migrations/migrate_csv_test.yml

File

tests/modules/migrate_source_csv_test/migrations/migrate_csv_test.yml
View source
  1. id: migrate_csv_test
  2. migration_tags:
  3. - CSV
  4. label: 'CSV file migration'
  5. source:
  6. plugin: csv
  7. path: /artifacts/people.csv
  8. ids: [id]
  9. process:
  10. type:
  11. plugin: default_value
  12. default_value: people
  13. title:
  14. plugin: concat
  15. source:
  16. - first_name
  17. - last_name
  18. delimiter: ' '
  19. field_first_name: first_name
  20. field_last_name: last_name
  21. field_email: email
  22. field_ip_address: ip_address
  23. field_dob:
  24. plugin: format_date
  25. from_format: m/d/Y
  26. to_format: Y-m-d
  27. source: date_of_birth
  28. destination:
  29. plugin: 'entity:node'
  30. migration_dependencies:
  31. required: { }
  32. optional: { }