using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace GerbilManagerWebAPI.Migrations { /// public partial class AddFeedbackQuestionAnswer : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Answer", table: "Feedback", type: "text", nullable: true); migrationBuilder.AddColumn( name: "AnsweredAt", table: "Feedback", type: "timestamp with time zone", nullable: true); migrationBuilder.AddColumn( name: "Question", table: "Feedback", type: "text", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Answer", table: "Feedback"); migrationBuilder.DropColumn( name: "AnsweredAt", table: "Feedback"); migrationBuilder.DropColumn( name: "Question", table: "Feedback"); } } }