mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
12 lines
428 B
C#
12 lines
428 B
C#
using System.Collections.Generic;
|
|
using FluentNHibernate.Cfg;
|
|
using Orchard.Data.Migration.Schema;
|
|
using Orchard.Environment.ShellBuilders.Models;
|
|
|
|
namespace Orchard.Data.Migration {
|
|
// Builds and runs the representative migration create calls
|
|
public interface IDataMigrationGenerator : IDependency {
|
|
IEnumerable<ISchemaBuilderCommand> CreateCommands(IEnumerable<RecordBlueprint> records);
|
|
}
|
|
}
|