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 private message entity builder
///
public partial class PrivateMessageBuilder : NopEntityBuilder
{
#region Methods
///
/// Apply entity configuration
///
/// Create table expression builder
public override void MapEntity(CreateTableExpressionBuilder table)
{
table
.WithColumn(nameof(PrivateMessage.Subject)).AsString(450).NotNullable()
.WithColumn(nameof(PrivateMessage.Text)).AsString(int.MaxValue).NotNullable()
.WithColumn(nameof(PrivateMessage.FromCustomerId)).AsInt32().ForeignKey().OnDelete(Rule.None)
.WithColumn(nameof(PrivateMessage.ToCustomerId)).AsInt32().ForeignKey().OnDelete(Rule.None);
}
#endregion
}