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