using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace IRaCIS.Core.Infra.EFCore.Migrations { /// public partial class AnswerCombination : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "AnswerCombination", table: "ReadingQuestionTrial", type: "nvarchar(max)", nullable: false, comment: "答案组合", oldClrType: typeof(string), oldType: "nvarchar(400)", oldMaxLength: 400, oldComment: "答案组合"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "AnswerCombination", table: "ReadingQuestionTrial", type: "nvarchar(400)", maxLength: 400, nullable: false, comment: "答案组合", oldClrType: typeof(string), oldType: "nvarchar(max)", oldComment: "答案组合"); } } }