mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-29 02:44:21 +01:00
@@ -70,10 +70,10 @@ 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),
|
||||
Destination = table.Column<string>(maxLength: 1000, nullable: true),
|
||||
Blob = table.Column<byte[]>(nullable: true),
|
||||
Proof = table.Column<byte[]>(nullable: true)
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user