using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ErsatzTV.Infrastructure.Sqlite.Migrations { /// public partial class AddFakeCollectionGroup : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "FakeCollectionKey", table: "ProgramScheduleItem", type: "TEXT", nullable: true); migrationBuilder.AddColumn( name: "FakeCollectionKey", table: "PlayoutProgramScheduleAnchor", type: "TEXT", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "FakeCollectionKey", table: "ProgramScheduleItem"); migrationBuilder.DropColumn( name: "FakeCollectionKey", table: "PlayoutProgramScheduleAnchor"); } } }