New Migration

This commit is contained in:
GuiNerd
2019-09-22 09:00:10 -03:00
parent 07230df64b
commit f9c65d9a91
33 changed files with 1199 additions and 198 deletions

View File

@ -19,22 +19,27 @@ namespace GerenciaProjetos.Migrations
modelBuilder.Entity("GerenciaProjetos.Models.Bug", b =>
{
b.Property<int>("DesenvolvedorId");
b.Property<int>("RequisitoId");
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<int>("CriadorId");
b.Property<DateTime>("DataCadastro");
b.Property<int>("DesenvolvedorId");
b.Property<bool>("FoiResolvido");
b.Property<string>("Prioridade");
b.HasKey("DesenvolvedorId", "RequisitoId");
b.Property<int>("RequisitoId");
b.HasKey("Id");
b.HasIndex("CriadorId");
b.HasIndex("DesenvolvedorId");
b.HasIndex("RequisitoId");
b.ToTable("Bugs");