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