first pass at block scheduling (#1548)

* add blocks, block groups

* basic block and block item editing

* add template groups and basic template editing (name)

* add blocks to template calendar

* edit playout templates

* add calendar preview to playout templates

* add basic block playout building

* add mysql migration

* update changelog
This commit is contained in:
Jason Dove
2024-01-13 22:01:21 -06:00
committed by GitHub
parent 5e530b9301
commit dcbe4837bf
126 changed files with 34235 additions and 78 deletions
@@ -0,0 +1,28 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ErsatzTV.Infrastructure.Sqlite.Migrations
{
/// <inheritdoc />
public partial class Add_PlayoutTemplate_DaysOfMonth : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "DaysOfMonth",
table: "PlayoutTemplate",
type: "TEXT",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "DaysOfMonth",
table: "PlayoutTemplate");
}
}
}