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