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