Migrations refactoring - WIP - move code
This commit is contained in:
13
src/Umbraco.Core/Migrations/IMigration.cs
Normal file
13
src/Umbraco.Core/Migrations/IMigration.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user