20 lines
511 B
C#
20 lines
511 B
C#
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Data.Mapping.Builders;
|
|
using Nop.Plugin.Misc.FruitBankPlugin.Domains;
|
|
|
|
namespace Nop.Plugin.Misc.FruitBankPlugin.Mapping.Builders;
|
|
|
|
public class PluginBuilder : NopEntityBuilder<CustomTable>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table)
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
} |