Created
October 23, 2016 06:55
-
-
Save vivianspencer/4b774f7150e675c81e4d3423d9c118d6 to your computer and use it in GitHub Desktop.
Drupal 8: Move taxonomy terms to another vocabulary
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE taxonomy_term_data SET vid = 'NEW_TAXONOMY' WHERE vid = 'OLD_TAXONOMY'; | |
UPDATE taxonomy_term_field_data SET vid = 'NEW_TAXONOMY' WHERE vid = 'OLD_TAXONOMY'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment