using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace GerbilManagerWebAPI.Migrations { /// public partial class AddFeedbackFixNoteContextThread : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "AgentContext", table: "Feedback", type: "text", nullable: true); migrationBuilder.AddColumn( name: "FixNote", table: "Feedback", type: "text", nullable: true); migrationBuilder.AddColumn( name: "Thread", table: "Feedback", type: "text", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "AgentContext", table: "Feedback"); migrationBuilder.DropColumn( name: "FixNote", table: "Feedback"); migrationBuilder.DropColumn( name: "Thread", table: "Feedback"); } } }