using FluentMigrator.Builders.Create.Table; using Nop.Core.Domain.Gdpr; namespace Nop.Data.Mapping.Builders.Gdpr; /// /// Represents a GDPR consent entity builder /// public partial class GdprConsentBuilder : NopEntityBuilder { #region Methods /// /// Apply entity configuration /// /// Create table expression builder public override void MapEntity(CreateTableExpressionBuilder table) { table.WithColumn(nameof(GdprConsent.Message)).AsString(int.MaxValue).NotNullable(); } #endregion }