using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace API.Data.Migrations
{
    /// 
    public partial class LibraryRemoveSortPrefix : Migration
    {
        /// 
        protected override void Up(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.AddColumn(
                name: "RemovePrefixForSortName",
                table: "Library",
                type: "INTEGER",
                nullable: false,
                defaultValue: false);
        }
        /// 
        protected override void Down(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.DropColumn(
                name: "RemovePrefixForSortName",
                table: "Library");
        }
    }
}