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