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]
|
[Required]
|
||||||
public string InvoiceDataId { get; set; }
|
public string InvoiceDataId { get; set; }
|
||||||
[Required]
|
[Required]
|
||||||
|
[MaxLength(30)]
|
||||||
public string PullPaymentDataId { get; set; }
|
public string PullPaymentDataId { get; set; }
|
||||||
public PullPaymentData PullPaymentData { get; set; }
|
public PullPaymentData PullPaymentData { get; set; }
|
||||||
public InvoiceData InvoiceData { get; set; }
|
public InvoiceData InvoiceData { get; set; }
|
||||||
|
|
|
@ -70,7 +70,7 @@ namespace BTCPayServer.Migrations
|
||||||
{
|
{
|
||||||
Id = table.Column<string>(maxLength: 30, nullable: false),
|
Id = table.Column<string>(maxLength: 30, nullable: false),
|
||||||
Date = table.Column<DateTimeOffset>(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),
|
State = table.Column<string>(maxLength: 20, nullable: false),
|
||||||
PaymentMethodId = table.Column<string>(maxLength: 20, nullable: false),
|
PaymentMethodId = table.Column<string>(maxLength: 20, nullable: false),
|
||||||
Destination = table.Column<string>(nullable: true),
|
Destination = table.Column<string>(nullable: true),
|
||||||
|
|
Loading…
Add table
Reference in a new issue