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