In de LST file vermelden welke teksten bij de upgrade verwijderd worden

svn path=/Database/trunk/; revision=57443
This commit is contained in:
Jos Groot Lipman
2022-09-29 12:46:20 +00:00
parent 31ea35638e
commit 10dca3a640

View File

@@ -8010,6 +8010,14 @@ COMMIT;
// Vervallen teksten opruimen
SELECT 'Dropping old text ' || LPAD(flx.fac_locale_xsl_label, 50) || ': ' || flx.fac_locale_xsl_tekst
FROM fac_locale_xsl flx
WHERE fac_locale_xsl_lang = 'NL'
AND NOT EXISTS
(SELECT fac_locale_xsl_label FROM tmp_lcl
WHERE tmp_lcl.fac_locale_xsl_label = flx.fac_locale_xsl_label
AND tmp_lcl.fac_locale_xsl_module = flx.fac_locale_xsl_module);
DELETE FROM fac_locale_xsl flx
WHERE NOT EXISTS
(SELECT fac_locale_xsl_label FROM tmp_lcl