Skip to content

Instantly share code, notes, and snippets.

View jaguerra's full-sized avatar

Jose Antonio Guerra jaguerra

  • Madrid
View GitHub Profile
@jaguerra
jaguerra / check.sql
Created March 30, 2015 08:24
Check and migrate all HTML cObjects from the database while upgrading to TYPO3 CMS 6.2
SELECT sys_template.config, REPLACE(config, ' HTML', ' TEXT')
FROM `sys_template`
INNER JOIN pages ON pages.uid = sys_template.pid
WHERE `config` REGEXP BINARY 'HTML'
AND sys_template.deleted = 0 AND sys_template.pid >= '0'
AND pages.deleted = 0