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