using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace IRaCIS.Core.Infra.EFCore.Migrations { /// public partial class ImageTool : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ImageTool", table: "ReadingTableQuestionTrial", type: "nvarchar(400)", maxLength: 400, nullable: false, defaultValue: ""); migrationBuilder.AddColumn( name: "ImageToolAttribute", table: "ReadingTableQuestionTrial", type: "nvarchar(400)", maxLength: 400, nullable: false, defaultValue: ""); migrationBuilder.AddColumn( name: "ImageTool", table: "ReadingQuestionTrial", type: "nvarchar(400)", maxLength: 400, nullable: false, defaultValue: ""); migrationBuilder.AddColumn( name: "ImageToolAttribute", table: "ReadingQuestionTrial", type: "nvarchar(400)", maxLength: 400, nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ImageTool", table: "ReadingTableQuestionTrial"); migrationBuilder.DropColumn( name: "ImageToolAttribute", table: "ReadingTableQuestionTrial"); migrationBuilder.DropColumn( name: "ImageTool", table: "ReadingQuestionTrial"); migrationBuilder.DropColumn( name: "ImageToolAttribute", table: "ReadingQuestionTrial"); } } }