26 lines
745 B
C#
26 lines
745 B
C#
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;
|
|
|
|
/// <summary>
|
|
/// Represents a forum subscription entity builder
|
|
/// </summary>
|
|
public partial class ForumSubscriptionBuilder : NopEntityBuilder<ForumSubscription>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table)
|
|
{
|
|
table.WithColumn(nameof(ForumSubscription.CustomerId)).AsInt32().ForeignKey<Customer>(onDelete: Rule.None);
|
|
}
|
|
|
|
#endregion
|
|
} |