[WIP] Live flow

This commit is contained in:
Paul Schneider 2019-02-08 10:22:52 +00:00
commit ae55d9b8d8
16 changed files with 3605 additions and 100 deletions

View file

@ -1171,16 +1171,22 @@ namespace Yavsc.Migrations
b.Property<long>("Id")
.ValueGeneratedOnAdd();
b.Property<string>("DifferedFileName");
b.Property<string>("DifferedFileName")
.HasAnnotation("MaxLength", 255);
b.Property<string>("MediaType");
b.Property<string>("MediaType")
.HasAnnotation("MaxLength", 127);
b.Property<string>("OwnerId")
.IsRequired();
b.Property<string>("Pitch");
b.Property<string>("Pitch")
.HasAnnotation("MaxLength", 1023);
b.Property<string>("Title");
b.Property<int>("SequenceNumber");
b.Property<string>("Title")
.HasAnnotation("MaxLength", 255);
b.HasKey("Id");
});