2017-12-18 18:26:32 +01:00
|
|
|
|
namespace Umbraco.Core.Migrations
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Marker interface for migration expressions
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public interface IMigrationExpression
|
|
|
|
|
|
{
|
2019-01-26 09:42:14 -05:00
|
|
|
|
string Process(IMigrationContext context); // TODO: remove that one?
|
2017-12-19 15:06:18 +01:00
|
|
|
|
void Execute();
|
2017-12-18 18:26:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|