Created
August 27, 2019 14:45
-
-
Save Zillion01/563f883395e17b626e29e825d463e46a to your computer and use it in GitHub Desktop.
SQL to manually migrate TYPO3 EXT News tt_content records for newer versions of News
This file contains 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 tt_content | |
INNER JOIN tx_news_domain_model_news_ttcontent_mm ON (tt_content.uid = tx_news_domain_model_news_ttcontent_mm.uid_foreign) | |
SET tt_content.tx_news_related_news = tx_news_domain_model_news_ttcontent_mm.uid_local, | |
tt_content.sorting = tx_news_domain_model_news_ttcontent_mm.sorting |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment