fixed Address field size (back)

This commit is contained in:
ketominer
2020-04-19 13:48:05 +02:00
parent 686f5bf151
commit a7b926d907

View File

@@ -23,7 +23,7 @@ namespace BTCPayServer.Migrations
columns: table => new
{
InvoiceDataId = table.Column<string>(nullable: false, maxLength: maxLength),
Address = table.Column<string>(nullable: false, maxLength: 250),
Address = table.Column<string>(nullable: false, maxLength: this.IsMySql(migrationBuilder.ActiveProvider) ? (int?)512 : null),
Assigned = table.Column<DateTimeOffset>(nullable: false),
UnAssigned = table.Column<DateTimeOffset>(nullable: true)
},