2020-11-06 12:42:26 +01:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Data
|
|
|
|
{
|
|
|
|
public class StoreWebhookData
|
|
|
|
{
|
|
|
|
public string StoreId { get; set; }
|
|
|
|
public string WebhookId { get; set; }
|
|
|
|
public WebhookData Webhook { get; set; }
|
|
|
|
public StoreData Store { get; set; }
|
|
|
|
|
2020-12-28 21:57:21 +01:00
|
|
|
|
2020-11-06 12:42:26 +01:00
|
|
|
internal static void OnModelCreating(ModelBuilder builder)
|
|
|
|
{
|
|
|
|
builder.Entity<StoreWebhookData>()
|
|
|
|
.HasKey(p => new { p.StoreId, p.WebhookId });
|
|
|
|
|
|
|
|
builder.Entity<StoreWebhookData>()
|
|
|
|
.HasOne(o => o.Webhook)
|
|
|
|
.WithOne().OnDelete(DeleteBehavior.Cascade);
|
|
|
|
|
|
|
|
builder.Entity<StoreWebhookData>()
|
|
|
|
.HasOne(o => o.Store)
|
|
|
|
.WithOne().OnDelete(DeleteBehavior.Cascade);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|