attempt mysql fix

fixes #1836
This commit is contained in:
Kukks 2020-08-19 14:13:49 +02:00
parent cf7c5102fc
commit 47930035a7

View file

@ -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)
},