Try your search with a different keyword or use * as a wildcard.
using System.Data;
using FluentMigrator.Builders.Create.Table;
using Nop.Core.Domain.Customers;
using Nop.Core.Domain.Forums;
using Nop.Data.Extensions;
namespace Nop.Data.Mapping.Builders.Forums;
///
/// Represents a forum post entity builder
///
public partial class ForumPostBuilder : NopEntityBuilder
{
#region Methods
///
/// Apply entity configuration
///
/// Create table expression builder
public override void MapEntity(CreateTableExpressionBuilder table)
{
table
.WithColumn(nameof(ForumPost.Text)).AsString(int.MaxValue).NotNullable()
.WithColumn(nameof(ForumPost.IPAddress)).AsString(100).Nullable()
.WithColumn(nameof(ForumPost.CustomerId)).AsInt32().ForeignKey().OnDelete(Rule.None)
.WithColumn(nameof(ForumPost.TopicId)).AsInt32().ForeignKey();
}
#endregion
}