using FluentMigrator.Builders.Create.Table; using Nop.Core.Domain.Catalog; using Nop.Data.Extensions; namespace Nop.Data.Mapping.Builders.Catalog; /// /// Represents a product attribute value entity builder /// public partial class ProductAttributeValueBuilder : NopEntityBuilder { #region Methods /// /// Apply entity configuration /// /// Create table expression builder public override void MapEntity(CreateTableExpressionBuilder table) { table .WithColumn(nameof(ProductAttributeValue.Name)).AsString(400).NotNullable() .WithColumn(nameof(ProductAttributeValue.ColorSquaresRgb)).AsString(100).Nullable() .WithColumn(nameof(ProductAttributeValue.ProductAttributeMappingId)).AsInt32().ForeignKey(); } #endregion }