Skip to content

Instantly share code, notes, and snippets.

@wikipeter
Last active November 20, 2020 20:55
Show Gist options
  • Select an option

  • Save wikipeter/6e67695b143efd77d40a to your computer and use it in GitHub Desktop.

Select an option

Save wikipeter/6e67695b143efd77d40a to your computer and use it in GitHub Desktop.
SQL migration for renaming a TYPO3 Provider Extension
EXT:fluidcontent related migration
UPDATE tt_content
SET tx_fed_fcefile = REPLACE(tx_fed_fcefile, '[old_value]', '[new_value]')
WHERE tx_fed_fcefile LIKE '%[old_value]%';
EXT:fluidpages related migration
UPDATE pages
SET tx_fed_page_controller_action = REPLACE(tx_fed_page_controller_action, '[old_value]', '[new_value]')
WHERE tx_fed_page_controller_action LIKE '%[old_value]%';

UPDATE pages
SET tx_fed_page_controller_action_sub = REPLACE(tx_fed_page_controller_action_sub, '[old_value]', '[new_value]')
WHERE tx_fed_page_controller_action_sub LIKE '%[old_value]%';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment