using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace LawFirmDatabaseImplement.Migrations { /// public partial class OrderFix : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "DocumentName", table: "Orders"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "DocumentName", table: "Orders", type: "nvarchar(max)", nullable: false, defaultValue: ""); } } }