mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-16 15:05:39 +00:00
New Migration
This commit is contained in:
@ -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");
|
||||
|
Reference in New Issue
Block a user