select repo

This commit is contained in:
Paul Schneider 2018-07-22 23:19:05 +02:00
commit 5e16c588a1
13 changed files with 2792 additions and 138 deletions

View file

@ -1398,22 +1398,6 @@ namespace Yavsc.Migrations
b.HasKey("Id");
});
modelBuilder.Entity("Yavsc.Server.Models.IT.SourceCode.GitRepositoryReference", b =>
{
b.Property<string>("Path");
b.Property<string>("Branch")
.HasAnnotation("MaxLength", 512);
b.Property<string>("OwnerId")
.HasAnnotation("MaxLength", 1024);
b.Property<string>("Url")
.HasAnnotation("MaxLength", 2048);
b.HasKey("Path");
});
modelBuilder.Entity("Microsoft.AspNet.Identity.EntityFramework.IdentityRoleClaim<string>", b =>
{
b.HasOne("Microsoft.AspNet.Identity.EntityFramework.IdentityRole")
@ -1880,9 +1864,7 @@ namespace Yavsc.Migrations
.WithMany()
.HasForeignKey("ClientId");
b.HasOne("Yavsc.Server.Models.IT.SourceCode.GitRepositoryReference")
.WithMany()
.HasForeignKey("Name");
b.HasOne("Yavsc.Models.Payment.PayPalPayment")
.WithMany()
@ -1900,12 +1882,6 @@ namespace Yavsc.Migrations
.HasForeignKey("ProjectId");
});
modelBuilder.Entity("Yavsc.Server.Models.IT.SourceCode.GitRepositoryReference", b =>
{
b.HasOne("Yavsc.Models.ApplicationUser")
.WithMany()
.HasForeignKey("OwnerId");
});
}
}
}