using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace FindAndDrive.Persistence.Migrations { public partial class ReasonVerbiageLengthChange : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "ReasonVerbiage", table: "ApplicantCredit", type: "nvarchar(500)", maxLength: 500, nullable: false, oldClrType: typeof(string), oldType: "nvarchar(255)", oldMaxLength: 255); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "ReasonVerbiage", table: "ApplicantCredit", type: "nvarchar(255)", maxLength: 255, nullable: false, oldClrType: typeof(string), oldType: "nvarchar(500)", oldMaxLength: 500); } } }