Files
ersatztv/ErsatzTV.Infrastructure.Sqlite/Migrations/20250823160940_Remove_PlayoutExternalJsonFileTemplateFile.cs
T
Jason DoveandGitHub 53f281ce32 add xmltv block behavior setting (#2336)
* replace playout externaljsonfile and templatefile with schedulefile

* add scripted schedule-based playout

* wip - not functional yet

* temp disable scripted playout creation

* allow fast-forwarding block playouts

* add xmltv block behavior setting
2025-08-23 20:16:12 +00:00

39 lines
1.1 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ErsatzTV.Infrastructure.Sqlite.Migrations
{
/// <inheritdoc />
public partial class Remove_PlayoutExternalJsonFileTemplateFile : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ExternalJsonFile",
table: "Playout");
migrationBuilder.DropColumn(
name: "TemplateFile",
table: "Playout");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ExternalJsonFile",
table: "Playout",
type: "TEXT",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "TemplateFile",
table: "Playout",
type: "TEXT",
nullable: true);
}
}
}