Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ActivityLogTypeBuilder.cs

using FluentMigrator.Builders.Create.Table;
using Nop.Core.Domain.Logging;

namespace Nop.Data.Mapping.Builders.Logging;

/// 
/// Represents an activity log type entity builder
/// 
public partial class ActivityLogTypeBuilder : NopEntityBuilder
{
    #region Methods

    /// 
    /// Apply entity configuration
    /// 
    /// Create table expression builder
    public override void MapEntity(CreateTableExpressionBuilder table)
    {
        table
            .WithColumn(nameof(ActivityLogType.SystemKeyword)).AsString(100).NotNullable()
            .WithColumn(nameof(ActivityLogType.Name)).AsString(200).NotNullable();
    }

    #endregion
}