23 lines
669 B
C#
23 lines
669 B
C#
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Core.Domain.Shipping;
|
|
|
|
namespace Nop.Data.Mapping.Builders.Shipping;
|
|
|
|
/// <summary>
|
|
/// Represents a product availability range entity builder
|
|
/// </summary>
|
|
public partial class ProductAvailabilityRangeBuilder : NopEntityBuilder<ProductAvailabilityRange>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table)
|
|
{
|
|
table.WithColumn(nameof(ProductAvailabilityRange.Name)).AsString(400).NotNullable();
|
|
}
|
|
|
|
#endregion
|
|
} |