live setup in db

This commit is contained in:
Paul Schneider 2019-01-03 14:42:35 +00:00
commit 32a0abd03b
5 changed files with 2852 additions and 1 deletions

View file

@ -1160,6 +1160,25 @@ namespace Yavsc.Migrations
b.HasKey("Id");
});
modelBuilder.Entity("Yavsc.Models.Streaming.LiveFlow", b =>
{
b.Property<long>("Id")
.ValueGeneratedOnAdd();
b.Property<string>("DifferedFileName");
b.Property<string>("MediaType");
b.Property<string>("OwnerId")
.IsRequired();
b.Property<string>("Pitch");
b.Property<string>("Title");
b.HasKey("Id");
});
modelBuilder.Entity("Yavsc.Models.Workflow.Activity", b =>
{
b.Property<string>("Code")
@ -1821,6 +1840,13 @@ namespace Yavsc.Migrations
.HasForeignKey("PayPalPaymentCreationToken");
});
modelBuilder.Entity("Yavsc.Models.Streaming.LiveFlow", b =>
{
b.HasOne("Yavsc.Models.ApplicationUser")
.WithMany()
.HasForeignKey("OwnerId");
});
modelBuilder.Entity("Yavsc.Models.Workflow.Activity", b =>
{
b.HasOne("Yavsc.Models.Workflow.Activity")