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