using System; using Microsoft.EntityFrameworkCore.Migrations; namespace API.Data.Migrations { public partial class VolumeCoverImage : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "CoverImage", table: "Volume", type: "BLOB", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "CoverImage", table: "Volume"); } } }