Try your search with a different keyword or use * as a wildcard.
using FluentMigrator.Builders.Create.Table;
using Nop.Core.Domain.Directory;
namespace Nop.Data.Mapping.Builders.Directory;
///
/// Represents a country entity builder
///
public partial class CountryBuilder : NopEntityBuilder
{
#region Methods
///
/// Apply entity configuration
///
/// Create table expression builder
public override void MapEntity(CreateTableExpressionBuilder table) => table
.WithColumn(nameof(Country.Name)).AsString(100).NotNullable()
.WithColumn(nameof(Country.TwoLetterIsoCode)).AsString(2).Nullable()
.WithColumn(nameof(Country.ThreeLetterIsoCode)).AsString(3).Nullable();
#endregion
}