migrate-from-d7.sh 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #! /bin/bash
  2. echo "* * * * * * * * * * * * * * * *"
  3. echo "* *"
  4. echo "* Migration *"
  5. echo "* *"
  6. echo "* * * * * * * * * * * * * * * *"
  7. # drush ms --group=d7_materio
  8. echo " "
  9. echo "Migrating Files"
  10. drush mim d7_allpublicfiles --feedback="1000"
  11. echo " "
  12. echo "Migrating Users"
  13. drush mim d7_users --feedback="1000"
  14. drush mim d7_user_profiles --feedback="1000"
  15. echo " "
  16. echo "Migrating Taxonomy"
  17. echo "Migrating thesaurus"
  18. drush mim d7_taxonomy_term_thesaurus --update --feedback="100"
  19. drush mim d7_taxonomy_term_thesaurus_i18n --update --feedback="100"
  20. echo " "
  21. echo "Migrating tags"
  22. drush mim d7_taxonomy_term_tags --update --feedback="100"
  23. drush mim d7_taxonomy_term_tags_i18n --update --feedback="100"
  24. echo " "
  25. echo "Migrating companies"
  26. drush mim d7_taxonomy_term_company --update --feedback="100"
  27. echo " "
  28. echo "Migrating showroom"
  29. drush mim d7_taxonomy_term_showroom --update --feedback="100"
  30. echo " "
  31. echo "Migrating Nodes"
  32. echo "Migrating breves"
  33. drush mim d7_node_breve --feedback="100"
  34. drush mim d7_node_breve_i18n --feedback="100"
  35. echo " "
  36. echo "Migrating Materials"
  37. drush mim d7_node_materiau --feedback="1000"
  38. drush mim d7_node_materiau_i18n --feedback="1000"