Try your search with a different keyword or use * as a wildcard.
using FluentMigrator.Builders.Create.Table;
using Nop.Core.Domain.Customers;
using Nop.Core.Domain.Logging;
using Nop.Data.Extensions;
namespace Nop.Data.Mapping.Builders.Logging;
/// <summary>
/// Represents a activity log entity builder
/// </summary>
public partial class ActivityLogBuilder : NopEntityBuilder<ActivityLog>
{
#region Methods
/// <summary>
/// Apply entity configuration
/// </summary>
/// <param name="table">Create table expression builder</param>
public override void MapEntity(CreateTableExpressionBuilder table)
{
table
.WithColumn(nameof(ActivityLog.Comment)).AsString(int.MaxValue).NotNullable()
.WithColumn(nameof(ActivityLog.IpAddress)).AsString(100).Nullable()
.WithColumn(nameof(ActivityLog.EntityName)).AsString(400).Nullable()
.WithColumn(nameof(ActivityLog.ActivityLogTypeId)).AsInt32().ForeignKey<ActivityLogType>()
.WithColumn(nameof(ActivityLog.CustomerId)).AsInt32().ForeignKey<Customer>();
}
#endregion
}