* 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
14 lines
411 B
C#
14 lines
411 B
C#
using ErsatzTV.Core.Domain.Scheduling;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace ErsatzTV.Infrastructure.Data.Configurations.Scheduling;
|
|
|
|
public class PlayoutHistoryConfiguration : IEntityTypeConfiguration<PlayoutHistory>
|
|
{
|
|
public void Configure(EntityTypeBuilder<PlayoutHistory> builder)
|
|
{
|
|
builder.ToTable("PlayoutHistory");
|
|
}
|
|
}
|