using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace CMSMicroservice.Infrastructure.Persistence.Migrations { /// public partial class u12 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "DeliveryDescription", schema: "CMS", table: "UserOrders", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "DeliveryStatus", schema: "CMS", table: "UserOrders", type: "int", nullable: false, defaultValue: 0); migrationBuilder.AddColumn( name: "TrackingCode", schema: "CMS", table: "UserOrders", type: "nvarchar(max)", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "DeliveryDescription", schema: "CMS", table: "UserOrders"); migrationBuilder.DropColumn( name: "DeliveryStatus", schema: "CMS", table: "UserOrders"); migrationBuilder.DropColumn( name: "TrackingCode", schema: "CMS", table: "UserOrders"); } } }