live setup in db
This commit is contained in:
parent
db5e4ef113
commit
32a0abd03b
5 changed files with 2852 additions and 1 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue