26 lines
743 B
C#
26 lines
743 B
C#
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Core.Domain.Vendors;
|
|
using Nop.Data.Extensions;
|
|
|
|
namespace Nop.Data.Mapping.Builders.Vendors;
|
|
|
|
/// <summary>
|
|
/// Represents a vendor note entity builder
|
|
/// </summary>
|
|
public partial class VendorNoteBuilder : NopEntityBuilder<VendorNote>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table)
|
|
{
|
|
table
|
|
.WithColumn(nameof(VendorNote.Note)).AsString(int.MaxValue).NotNullable()
|
|
.WithColumn(nameof(VendorNote.VendorId)).AsInt32().ForeignKey<Vendor>();
|
|
}
|
|
|
|
#endregion
|
|
} |