add experimental playout template system (#1808)

* add template playout kind

* add template scheduler count

* implement pad to next

* only allow resetting template playouts

* update changelog
This commit is contained in:
Jason Dove
2024-07-26 08:34:18 -05:00
committed by GitHub
parent 50f2cb7a33
commit d9a7615cf6
42 changed files with 12376 additions and 73 deletions
@@ -0,0 +1,28 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ErsatzTV.Infrastructure.Sqlite.Migrations
{
/// <inheritdoc />
public partial class Add_Playout_TemplateFile : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "TemplateFile",
table: "Playout",
type: "TEXT",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "TemplateFile",
table: "Playout");
}
}
}