[WIP] Live flow
This commit is contained in:
parent
c496581447
commit
ae55d9b8d8
16 changed files with 3605 additions and 100 deletions
|
|
@ -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");
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue