using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace IRaCIS.Core.Infra.EFCore.Migrations { /// public partial class classify : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ClassifyEditType", table: "ReadingTableQuestionTrial", type: "int", nullable: true); migrationBuilder.AddColumn( name: "ClassifyShowType", table: "ReadingTableQuestionTrial", type: "int", nullable: true); migrationBuilder.AddColumn( name: "ClassifyEditType", table: "ReadingTableQuestionSystem", type: "int", nullable: true); migrationBuilder.AddColumn( name: "ClassifyShowType", table: "ReadingTableQuestionSystem", type: "int", nullable: true); migrationBuilder.AddColumn( name: "ClassifyEditType", table: "ReadingQuestionTrial", type: "int", nullable: true); migrationBuilder.AddColumn( name: "ClassifyShowType", table: "ReadingQuestionTrial", type: "int", nullable: true); migrationBuilder.AddColumn( name: "ClassifyEditType", table: "ReadingQuestionSystem", type: "int", nullable: true); migrationBuilder.AddColumn( name: "ClassifyShowType", table: "ReadingQuestionSystem", type: "int", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ClassifyEditType", table: "ReadingTableQuestionTrial"); migrationBuilder.DropColumn( name: "ClassifyShowType", table: "ReadingTableQuestionTrial"); migrationBuilder.DropColumn( name: "ClassifyEditType", table: "ReadingTableQuestionSystem"); migrationBuilder.DropColumn( name: "ClassifyShowType", table: "ReadingTableQuestionSystem"); migrationBuilder.DropColumn( name: "ClassifyEditType", table: "ReadingQuestionTrial"); migrationBuilder.DropColumn( name: "ClassifyShowType", table: "ReadingQuestionTrial"); migrationBuilder.DropColumn( name: "ClassifyEditType", table: "ReadingQuestionSystem"); migrationBuilder.DropColumn( name: "ClassifyShowType", table: "ReadingQuestionSystem"); } } }