using FluentMigrator.Builders.Create.Table; using Nop.Core.Domain.Catalog; namespace Nop.Data.Mapping.Builders.Catalog; /// /// Represents a manufacturer entity builder /// public partial class ManufacturerBuilder : NopEntityBuilder { #region Methods /// /// Apply entity configuration /// /// Create table expression builder public override void MapEntity(CreateTableExpressionBuilder table) { table .WithColumn(nameof(Manufacturer.Name)).AsString(400).NotNullable() .WithColumn(nameof(Manufacturer.MetaKeywords)).AsString(400).Nullable() .WithColumn(nameof(Manufacturer.MetaTitle)).AsString(400).Nullable() .WithColumn(nameof(Manufacturer.PageSizeOptions)).AsString(200).Nullable(); } #endregion }