Skip to content

Instantly share code, notes, and snippets.

@marklabrecque
Created August 23, 2017 19:42
Show Gist options
  • Save marklabrecque/eb5033c909c628f7b558fac4acfc1f02 to your computer and use it in GitHub Desktop.
Save marklabrecque/eb5033c909c628f7b558fac4acfc1f02 to your computer and use it in GitHub Desktop.
Uninstalling Drupal 8 core Content Translation
UPDATE `media_field_data`
SET content_translation_source=null, content_translation_outdated=null, content_translation_uid=null;
UPDATE `media_field_revision`
SET content_translation_source=null, content_translation_outdated=null, content_translation_uid=null;
UPDATE `paragraphs_item_revision_field_data`
SET content_translation_source=null, content_translation_outdated=null, content_translation_changed=null;
UPDATE `paragraphs_item_field_data`
SET content_translation_source=null, content_translation_outdated=null, content_translation_changed=null;
UPDATE `taxonomy_term_field_data`
SET content_translation_source=null, content_translation_outdated=null, content_translation_uid=null, content_translation_status=null, content_translation_created=null;
UPDATE `node_field_data`
SET content_translation_source=null, content_translation_outdated=null;
UPDATE `node_field_revision`
SET content_translation_source=null, content_translation_outdated=null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment