Updates this migration to only run when upgrading from 7.3.0 and higher

This commit is contained in:
Sebastiaan Janssen
2016-05-20 16:36:22 +02:00
parent e54d374eb2
commit 8c7390280e

View File

@@ -6,7 +6,10 @@ using Umbraco.Core.Persistence.SqlSyntax;
namespace Umbraco.Core.Persistence.Migrations.Upgrades.TargetVersionSevenFiveZero
{
[Migration("7.5.0", 10, GlobalSettings.UmbracoMigrationName)]
// This migration exists for 7.3.0 but it seems like it was not always running properly
// if you're upgrading from 7.3.0 or higher than we add this migration, if you're upgrading
// from 7.3.0 or lower then you will already get this migration in the migration to get to 7.3.0
[Migration("7.3.0", "7.5.0", 10, GlobalSettings.UmbracoMigrationName)]
public class EnsureServersLockObject : MigrationBase
{
public EnsureServersLockObject(ISqlSyntaxProvider sqlSyntax, ILogger logger)