instruments & global positioning

This commit is contained in:
2019-08-20 16:49:38 +01:00
parent ca8d821ebf
commit 9a17dcf017
27 changed files with 6633 additions and 125 deletions

View File

@ -1020,6 +1020,20 @@ namespace Yavsc.Migrations
b.HasKey("Id");
});
modelBuilder.Entity("Yavsc.Models.Musical.InstrumentRating", b =>
{
b.Property<long>("Id")
.ValueGeneratedOnAdd();
b.Property<long>("InstrumentId");
b.Property<string>("OwnerId");
b.Property<int>("Rate");
b.HasKey("Id");
});
modelBuilder.Entity("Yavsc.Models.Musical.MusicalPreference", b =>
{
b.Property<string>("OwnerProfileId");
@ -1340,6 +1354,8 @@ namespace Yavsc.Migrations
{
b.Property<string>("UserId");
b.Property<string>("DisplayName");
b.HasKey("UserId");
});
@ -1863,6 +1879,17 @@ namespace Yavsc.Migrations
.HasForeignKey("UserId");
});
modelBuilder.Entity("Yavsc.Models.Musical.InstrumentRating", b =>
{
b.HasOne("Yavsc.Models.Musical.Instrument")
.WithMany()
.HasForeignKey("InstrumentId");
b.HasOne("Yavsc.Models.Workflow.PerformerProfile")
.WithMany()
.HasForeignKey("OwnerId");
});
modelBuilder.Entity("Yavsc.Models.Musical.MusicalPreference", b =>
{
b.HasOne("Yavsc.Models.Musical.Profiles.DjSettings")