using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace OneForMe.Migrations { /// public partial class AddDescriptionToMenuOrder : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Comments", table: "OrderItems", type: "TEXT", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Comments", table: "OrderItems"); } } }