using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace IRaCIS.Core.Infra.EFCore.Migrations { /// public partial class iamgeandQuestion : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ImageCount", table: "ReadingTableQuestionTrial", type: "int", nullable: true, comment: "图片数量"); migrationBuilder.AddColumn( name: "ImageCount", table: "ReadingTableQuestionSystem", type: "int", nullable: true, comment: "图片数量"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ImageCount", table: "ReadingTableQuestionTrial"); migrationBuilder.DropColumn( name: "ImageCount", table: "ReadingTableQuestionSystem"); } } }