25 lines
702 B
C#
25 lines
702 B
C#
using System.Data;
|
|
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Core.Domain.Orders;
|
|
using Nop.Data.Extensions;
|
|
|
|
namespace Nop.Data.Mapping.Builders.Orders;
|
|
|
|
/// <summary>
|
|
/// Represents a gift card entity builder
|
|
/// </summary>
|
|
public partial class GiftCardBuilder : NopEntityBuilder<GiftCard>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table)
|
|
{
|
|
table.WithColumn(nameof(GiftCard.PurchasedWithOrderItemId)).AsInt32().Nullable().ForeignKey<OrderItem>(onDelete: Rule.None);
|
|
}
|
|
|
|
#endregion
|
|
} |