23 lines
620 B
C#
23 lines
620 B
C#
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Core.Domain.Gdpr;
|
|
|
|
namespace Nop.Data.Mapping.Builders.Gdpr;
|
|
|
|
/// <summary>
|
|
/// Represents a GDPR consent entity builder
|
|
/// </summary>
|
|
public partial class GdprConsentBuilder : NopEntityBuilder<GdprConsent>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table)
|
|
{
|
|
table.WithColumn(nameof(GdprConsent.Message)).AsString(int.MaxValue).NotNullable();
|
|
}
|
|
|
|
#endregion
|
|
} |