Skip to content

Instantly share code, notes, and snippets.

@vivianspencer
Created October 23, 2016 06:55
Show Gist options
  • Save vivianspencer/4b774f7150e675c81e4d3423d9c118d6 to your computer and use it in GitHub Desktop.
Save vivianspencer/4b774f7150e675c81e4d3423d9c118d6 to your computer and use it in GitHub Desktop.
Drupal 8: Move taxonomy terms to another vocabulary
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