simpler, better

This commit is contained in:
2018-06-10 20:40:11 +02:00
parent b14ad5242b
commit 78c89b32b4
27 changed files with 3323 additions and 50 deletions

View File

@ -1345,6 +1345,8 @@ namespace Yavsc.Migrations
b.Property<string>("Branch");
b.Property<string>("OwnerId");
b.HasKey("Path", "Url", "Branch");
});
@ -1803,6 +1805,13 @@ namespace Yavsc.Migrations
.WithMany()
.HasForeignKey("ManagerId");
});
modelBuilder.Entity("Yavsc.Server.Models.IT.SourceCode.GitRepositoryReference", b =>
{
b.HasOne("Yavsc.Models.ApplicationUser")
.WithMany()
.HasForeignKey("OwnerId");
});
}
}
}