simpler, better
This commit is contained in:
parent
f89cf9c2f1
commit
dc1b82ab1b
27 changed files with 3323 additions and 50 deletions
|
|
@ -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");
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue