Try your search with a different keyword or use * as a wildcard.
using FluentMigrator.Builders.Create.Table;
using Nop.Core.Domain.ScheduleTasks;
namespace Nop.Data.Mapping.Builders.Tasks;
///
/// Represents a schedule task entity builder
///
public partial class ScheduleTaskBuilder : NopEntityBuilder
{
#region Methods
///
/// Apply entity configuration
///
/// Create table expression builder
public override void MapEntity(CreateTableExpressionBuilder table)
{
table
.WithColumn(nameof(ScheduleTask.Name)).AsString(int.MaxValue).NotNullable()
.WithColumn(nameof(ScheduleTask.Type)).AsString(int.MaxValue).NotNullable();
}
#endregion
}