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