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