using FluentMigrator.Builders.Create.Table; using Nop.Core.Domain.Vendors; namespace Nop.Data.Mapping.Builders.Vendors; /// /// Represents a vendor attribute entity builder /// public partial class VendorAttributeBuilder : NopEntityBuilder { #region Methods /// /// Apply entity configuration /// /// Create table expression builder public override void MapEntity(CreateTableExpressionBuilder table) { table.WithColumn(nameof(VendorAttribute.Name)).AsString(400).NotNullable(); } #endregion }