More IDiscoverable

This commit is contained in:
Stephan
2017-03-05 11:28:32 +01:00
parent 3b3eda5bfc
commit 4f1b76f5ff
3 changed files with 8 additions and 4 deletions

View File

@@ -1,9 +1,11 @@
namespace Umbraco.Core.Persistence.Migrations
using umbraco.interfaces;
namespace Umbraco.Core.Persistence.Migrations
{
/// <summary>
/// Marker interface for database migrations
/// </summary>
public interface IMigration
public interface IMigration : IDiscoverable
{
void Up();
void Down();