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