using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace IRaCIS.Core.Infra.EFCore.Migrations { /// public partial class CopyLesionAnswer : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsCopyLesionAnswer", table: "VisitTask", type: "bit", nullable: false, defaultValue: false); migrationBuilder.AddColumn( name: "IdentityRowId", table: "ReadingTableAnswerRowInfo", type: "uniqueidentifier", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsCopyLesionAnswer", table: "VisitTask"); migrationBuilder.DropColumn( name: "IdentityRowId", table: "ReadingTableAnswerRowInfo"); } } }