using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace DataLayer.Migrations { /// public partial class AddBookLanguage : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Language", table: "Books", type: "TEXT", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Language", table: "Books"); } } }