From 752137aeb1cd35372d7060a05f4c5217f9a1d310 Mon Sep 17 00:00:00 2001 From: Kevin Date: Thu, 15 Feb 2024 16:57:42 -0600 Subject: [PATCH] Update Export Template SQL script SQL migration script for exports "email" in the path instead of "export" --- .../upgrading/migrate-from-vendr-to-umbraco-commerce/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-commerce/upgrading/migrate-from-vendr-to-umbraco-commerce/README.md b/13/umbraco-commerce/upgrading/migrate-from-vendr-to-umbraco-commerce/README.md index a091270e061..66cc39cb4b7 100644 --- a/13/umbraco-commerce/upgrading/migrate-from-vendr-to-umbraco-commerce/README.md +++ b/13/umbraco-commerce/upgrading/migrate-from-vendr-to-umbraco-commerce/README.md @@ -237,7 +237,7 @@ UPDATE umbracoCommercePrintTemplate SET templateView = REPLACE(templateView, '/App_Plugins/Vendr/templates/print', '/Views/UmbracoCommerce/Templates/Print') WHERE templateView LIKE '%/Vendr/%'; UPDATE umbracoCommerceExportTemplate -SET templateView = REPLACE(templateView, '/App_Plugins/Vendr/templates/email', '/Views/UmbracoCommerce/Templates/Export') +SET templateView = REPLACE(templateView, '/App_Plugins/Vendr/templates/export', '/Views/UmbracoCommerce/Templates/Export') WHERE templateView LIKE '%/Vendr/%'; ```