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