using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace FindAndDrive.Persistence.Migrations { public partial class PreMergeIntoDeev : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ImprovementSuggestionFull", table: "ApplicantPredicition", type: "nvarchar(500)", maxLength: 500, nullable: false, defaultValue: ""); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ImprovementSuggestionFull", table: "ApplicantPredicition"); } } }