From 47930035a70fa371fb86d92c68a448231d72c512 Mon Sep 17 00:00:00 2001 From: Kukks Date: Wed, 19 Aug 2020 14:13:49 +0200 Subject: [PATCH] attempt mysql fix fixes #1836 --- .../20200625064111_refundnotificationpullpayments.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BTCPayServer.Data/Migrations/20200625064111_refundnotificationpullpayments.cs b/BTCPayServer.Data/Migrations/20200625064111_refundnotificationpullpayments.cs index 1a3f68f32..8f37d9029 100644 --- a/BTCPayServer.Data/Migrations/20200625064111_refundnotificationpullpayments.cs +++ b/BTCPayServer.Data/Migrations/20200625064111_refundnotificationpullpayments.cs @@ -70,10 +70,10 @@ namespace BTCPayServer.Migrations { Id = table.Column(maxLength: 30, nullable: false), Date = table.Column(nullable: false), - PullPaymentDataId = table.Column(nullable: true), + PullPaymentDataId = table.Column(maxLength: 30, nullable: true), State = table.Column(maxLength: 20, nullable: false), PaymentMethodId = table.Column(maxLength: 20, nullable: false), - Destination = table.Column(nullable: true), + Destination = table.Column(maxLength: 1000, nullable: true), Blob = table.Column(nullable: true), Proof = table.Column(nullable: true) },