From 7329113885141bbc6889044bf5ff29d6eee1913c Mon Sep 17 00:00:00 2001 From: kjac Date: Tue, 29 Nov 2022 07:29:23 +0100 Subject: [PATCH] Fix merge --- src/Umbraco.Infrastructure/Migrations/Upgrade/UmbracoPlan.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Umbraco.Infrastructure/Migrations/Upgrade/UmbracoPlan.cs b/src/Umbraco.Infrastructure/Migrations/Upgrade/UmbracoPlan.cs index 750c65c21a..4e2728aad9 100644 --- a/src/Umbraco.Infrastructure/Migrations/Upgrade/UmbracoPlan.cs +++ b/src/Umbraco.Infrastructure/Migrations/Upgrade/UmbracoPlan.cs @@ -2,6 +2,7 @@ using Umbraco.Cms.Core; using Umbraco.Cms.Core.Configuration; using Umbraco.Cms.Infrastructure.Migrations.Upgrade.V_10_0_0; using Umbraco.Cms.Infrastructure.Migrations.Upgrade.V_10_2_0; +using Umbraco.Cms.Infrastructure.Migrations.Upgrade.V_12_0_0; namespace Umbraco.Cms.Infrastructure.Migrations.Upgrade; @@ -80,5 +81,8 @@ public class UmbracoPlan : MigrationPlan // To 10.4.0 To("{3F5D492A-A3DB-43F9-A73E-9FEE3B180E6C}"); + + // To 12.0.0 + To("{888A0D5D-51E4-4C7E-AA0A-01306523C7FB}"); } }