mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
commit
4055498921
2 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ namespace BTCPayServer.Data
|
|||
[Required]
|
||||
public string InvoiceDataId { get; set; }
|
||||
[Required]
|
||||
[MaxLength(30)]
|
||||
public string PullPaymentDataId { get; set; }
|
||||
public PullPaymentData PullPaymentData { get; set; }
|
||||
public InvoiceData InvoiceData { get; set; }
|
||||
|
|
|
@ -70,7 +70,7 @@ namespace BTCPayServer.Migrations
|
|||
{
|
||||
Id = table.Column<string>(maxLength: 30, nullable: false),
|
||||
Date = table.Column<DateTimeOffset>(nullable: false),
|
||||
PullPaymentDataId = table.Column<string>(nullable: true),
|
||||
PullPaymentDataId = table.Column<string>(maxLength: 30, nullable: true),
|
||||
State = table.Column<string>(maxLength: 20, nullable: false),
|
||||
PaymentMethodId = table.Column<string>(maxLength: 20, nullable: false),
|
||||
Destination = table.Column<string>(nullable: true),
|
||||
|
|
Loading…
Add table
Reference in a new issue