using Microsoft.EntityFrameworkCore.Migrations; namespace Microsoft.eShopWeb.Infrastructure.Data.Migrations { public partial class AddExtraConstraints : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "ShipToAddress_ZipCode", table: "Orders", maxLength: 18, nullable: false, oldClrType: typeof(string), oldNullable: true); migrationBuilder.AlterColumn( name: "ShipToAddress_Street", table: "Orders", maxLength: 180, nullable: false, oldClrType: typeof(string), oldNullable: true); migrationBuilder.AlterColumn( name: "ShipToAddress_State", table: "Orders", maxLength: 60, nullable: true, oldClrType: typeof(string), oldNullable: true); migrationBuilder.AlterColumn( name: "ShipToAddress_Country", table: "Orders", maxLength: 90, nullable: false, oldClrType: typeof(string), oldNullable: true); migrationBuilder.AlterColumn( name: "ShipToAddress_City", table: "Orders", maxLength: 100, nullable: false, oldClrType: typeof(string), oldNullable: true); migrationBuilder.AlterColumn( name: "ItemOrdered_ProductName", table: "OrderItems", maxLength: 50, nullable: false, oldClrType: typeof(string), oldNullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "ShipToAddress_ZipCode", table: "Orders", nullable: true, oldClrType: typeof(string), oldMaxLength: 18); migrationBuilder.AlterColumn( name: "ShipToAddress_Street", table: "Orders", nullable: true, oldClrType: typeof(string), oldMaxLength: 180); migrationBuilder.AlterColumn( name: "ShipToAddress_State", table: "Orders", nullable: true, oldClrType: typeof(string), oldMaxLength: 60, oldNullable: true); migrationBuilder.AlterColumn( name: "ShipToAddress_Country", table: "Orders", nullable: true, oldClrType: typeof(string), oldMaxLength: 90); migrationBuilder.AlterColumn( name: "ShipToAddress_City", table: "Orders", nullable: true, oldClrType: typeof(string), oldMaxLength: 100); migrationBuilder.AlterColumn( name: "ItemOrdered_ProductName", table: "OrderItems", nullable: true, oldClrType: typeof(string), oldMaxLength: 50); } } }