add custom title option to schedule items (#116)

This commit is contained in:
Jason Dove
2021-03-29 21:46:03 +00:00
committed by GitHub
parent a62c4ecfcf
commit 745b03af73
21 changed files with 2020 additions and 56 deletions
@@ -611,6 +611,12 @@ namespace ErsatzTV.Infrastructure.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<bool>("CustomGroup")
.HasColumnType("INTEGER");
b.Property<string>("CustomTitle")
.HasColumnType("TEXT");
b.Property<DateTime>("Finish")
.HasColumnType("TEXT");
@@ -752,6 +758,9 @@ namespace ErsatzTV.Infrastructure.Migrations
b.Property<int>("CollectionType")
.HasColumnType("INTEGER");
b.Property<string>("CustomTitle")
.HasColumnType("TEXT");
b.Property<int>("Index")
.HasColumnType("INTEGER");