Changing the MoveMasterContentTypeData migration to use the fluent Update statement with dynamic entries from the database. Adding IfDatabase condition for Update. Updating a few tests, which were using the MigrationContext.
71 lines
2.0 KiB
C#
71 lines
2.0 KiB
C#
using Umbraco.Core.Persistence.Migrations.Syntax.Alter;
|
|
using Umbraco.Core.Persistence.Migrations.Syntax.Create;
|
|
using Umbraco.Core.Persistence.Migrations.Syntax.Delete;
|
|
using Umbraco.Core.Persistence.Migrations.Syntax.Execute;
|
|
using Umbraco.Core.Persistence.Migrations.Syntax.IfDatabase;
|
|
using Umbraco.Core.Persistence.Migrations.Syntax.Insert;
|
|
using Umbraco.Core.Persistence.Migrations.Syntax.Rename;
|
|
using Umbraco.Core.Persistence.Migrations.Syntax.Update;
|
|
|
|
namespace Umbraco.Core.Persistence.Migrations
|
|
{
|
|
public abstract class MigrationBase : IMigration
|
|
{
|
|
internal IMigrationContext Context;
|
|
|
|
public abstract void Up();
|
|
public abstract void Down();
|
|
|
|
public virtual void GetUpExpressions(IMigrationContext context)
|
|
{
|
|
Context = context;
|
|
Up();
|
|
}
|
|
|
|
public virtual void GetDownExpressions(IMigrationContext context)
|
|
{
|
|
Context = context;
|
|
Down();
|
|
}
|
|
|
|
public IAlterSyntaxBuilder Alter
|
|
{
|
|
get { return new AlterSyntaxBuilder(Context); }
|
|
}
|
|
|
|
public ICreateBuilder Create
|
|
{
|
|
get { return new CreateBuilder(Context); }
|
|
}
|
|
|
|
public IDeleteBuilder Delete
|
|
{
|
|
get { return new DeleteBuilder(Context); }
|
|
}
|
|
|
|
public IExecuteBuilder Execute
|
|
{
|
|
get { return new ExecuteBuilder(Context); }
|
|
}
|
|
|
|
public IInsertBuilder Insert
|
|
{
|
|
get { return new InsertBuilder(Context); }
|
|
}
|
|
|
|
public IRenameBuilder Rename
|
|
{
|
|
get { return new RenameBuilder(Context); }
|
|
}
|
|
|
|
public IUpdateBuilder Update
|
|
{
|
|
get { return new UpdateBuilder(Context); }
|
|
}
|
|
|
|
public IIfDatabaseBuilder IfDatabase(params DatabaseProviders[] databaseProviders)
|
|
{
|
|
return new IfDatabaseBuilder(Context, databaseProviders);
|
|
}
|
|
}
|
|
} |