2012-12-27 18:52:47 -01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Persistence.Migrations
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IMigrationContext
|
|
|
|
|
|
{
|
|
|
|
|
|
ICollection<IMigrationExpression> Expressions { get; set; }
|
|
|
|
|
|
DatabaseProviders CurrentDatabaseProvider { get; }
|
2013-01-18 13:51:40 -01:00
|
|
|
|
Database Database { get; }
|
2012-12-27 18:52:47 -01:00
|
|
|
|
}
|
|
|
|
|
|
}
|