using Microsoft.EntityFrameworkCore.Migrations; using CvMatcher.Data; #nullable disable namespace CvMatcher.Data.Migrations { /// public partial class AddLanguageToCvMatchResult : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Language", schema: MigrationConstants.SchemaName, table: "Results", type: "nvarchar(max)", nullable: false, defaultValue: "en"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Language", schema: MigrationConstants.SchemaName, table: "Results"); } } }