Migrations refactoring - WIP - move code

This commit is contained in:
Stephan
2017-12-18 18:26:32 +01:00
parent f6314e1361
commit 2182b0f18f
205 changed files with 5349 additions and 5481 deletions

View File

@@ -0,0 +1,13 @@
using Umbraco.Core.Composing;
namespace Umbraco.Core.Migrations
{
/// <summary>
/// Marker interface for database migrations
/// </summary>
public interface IMigration : IDiscoverable
{
void Up();
void Down();
}
}