using Umbraco.Core.Composing; namespace Umbraco.Core.Migrations { /// /// Represents a migration. /// public interface IMigration : IDiscoverable { /// /// Executes the migration. /// void Migrate(); } }