using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ErsatzTV.Infrastructure.MySql.Migrations { /// public partial class Add_ChannelIdleBehavior : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IdleBehavior", table: "Channel", type: "int", nullable: false, defaultValue: 0); migrationBuilder.AddColumn( name: "TranscodeMode", table: "Channel", type: "int", nullable: false, defaultValue: 0); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IdleBehavior", table: "Channel"); migrationBuilder.DropColumn( name: "TranscodeMode", table: "Channel"); } } }