migrate-from-d7.sh 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 --update --feedback="1000"
  14. echo " "
  15. echo "Migrating Taxonomy"
  16. echo "Migrating thesaurus"
  17. drush mim d7_taxonomy_term_thesaurus --update --feedback="100"
  18. drush mim d7_taxonomy_term_thesaurus_i18n --update --feedback="100"
  19. echo " "
  20. echo "Migrating tags"
  21. drush mim d7_taxonomy_term_tags --update --feedback="100"
  22. drush mim d7_taxonomy_term_tags_i18n --update --feedback="100"
  23. echo " "
  24. echo "Migrating companies"
  25. drush mim d7_taxonomy_term_company --update --feedback="100"
  26. echo " "
  27. echo "Migrating showroom"
  28. drush mim d7_taxonomy_term_showroom --update --feedback="100"
  29. echo " "
  30. echo "Migrating Nodes"
  31. echo "Migrating breves"
  32. drush mim d7_node_breve --feedback="100"
  33. drush mim d7_node_breve_i18n --feedback="100"
  34. echo " "
  35. echo "Migrating Materials"
  36. drush mim d7_node_materiau --feedback="1000"
  37. drush mim d7_node_materiau_i18n --feedback="1000"