123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519 |
- // <auto-generated />
- using System;
- using ConcursoProjetos.Data;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore.Infrastructure;
- using Microsoft.EntityFrameworkCore.Metadata;
- using Microsoft.EntityFrameworkCore.Migrations;
- using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
- #nullable disable
- namespace ConcursoProjetos.Migrations
- {
- [DbContext(typeof(ApplicationDbContext))]
- [Migration("20241217173202_projeto-codigo3")]
- partial class projetocodigo3
- {
- /// <inheritdoc />
- protected override void BuildTargetModel(ModelBuilder modelBuilder)
- {
- #pragma warning disable 612, 618
- modelBuilder
- .HasAnnotation("ProductVersion", "8.0.8")
- .HasAnnotation("Relational:MaxIdentifierLength", 128);
- SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
- modelBuilder.Entity("ConcursoProjetos.Data.ApplicationUser", b =>
- {
- b.Property<string>("Id")
- .HasColumnType("nvarchar(450)");
- b.Property<int>("AccessFailedCount")
- .HasColumnType("int");
- b.Property<string>("ConcurrencyStamp")
- .IsConcurrencyToken()
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Email")
- .HasMaxLength(256)
- .HasColumnType("nvarchar(256)");
- b.Property<bool>("EmailConfirmed")
- .HasColumnType("bit");
- b.Property<bool>("LockoutEnabled")
- .HasColumnType("bit");
- b.Property<DateTimeOffset?>("LockoutEnd")
- .HasColumnType("datetimeoffset");
- b.Property<string>("NormalizedEmail")
- .HasMaxLength(256)
- .HasColumnType("nvarchar(256)");
- b.Property<string>("NormalizedUserName")
- .HasMaxLength(256)
- .HasColumnType("nvarchar(256)");
- b.Property<string>("PasswordHash")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("PhoneNumber")
- .HasColumnType("nvarchar(max)");
- b.Property<bool>("PhoneNumberConfirmed")
- .HasColumnType("bit");
- b.Property<string>("SecurityStamp")
- .HasColumnType("nvarchar(max)");
- b.Property<bool>("TwoFactorEnabled")
- .HasColumnType("bit");
- b.Property<string>("UserName")
- .HasMaxLength(256)
- .HasColumnType("nvarchar(256)");
- b.HasKey("Id");
- b.HasIndex("NormalizedEmail")
- .HasDatabaseName("EmailIndex");
- b.HasIndex("NormalizedUserName")
- .IsUnique()
- .HasDatabaseName("UserNameIndex")
- .HasFilter("[NormalizedUserName] IS NOT NULL");
- b.ToTable("AspNetUsers", (string)null);
- });
- modelBuilder.Entity("ConcursoProjetos.Domain.Entities.Candidato", b =>
- {
- b.Property<long>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("bigint");
- SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
- b.Property<string>("Cnpj")
- .IsRequired()
- .HasMaxLength(14)
- .HasColumnType("nvarchar");
- b.Property<string>("Cpf")
- .IsRequired()
- .HasMaxLength(11)
- .HasColumnType("nvarchar");
- b.Property<DateTime>("DateDelete")
- .HasColumnType("datetime2");
- b.Property<DateTime>("DateInclude")
- .HasColumnType("datetime2");
- b.Property<string>("Email")
- .IsRequired()
- .HasMaxLength(100)
- .HasColumnType("nvarchar");
- b.Property<string>("EmpresaEmail")
- .IsRequired()
- .HasMaxLength(100)
- .HasColumnType("nvarchar");
- b.Property<string>("EmpresaRazaoSocial")
- .IsRequired()
- .HasMaxLength(100)
- .HasColumnType("nvarchar");
- b.Property<string>("EmpresaTelefone")
- .IsRequired()
- .HasMaxLength(20)
- .HasColumnType("nvarchar");
- b.Property<bool>("IsDeleted")
- .HasColumnType("bit");
- b.Property<string>("NomeCompleto")
- .IsRequired()
- .HasMaxLength(100)
- .HasColumnType("nvarchar");
- b.Property<string>("Telefone")
- .IsRequired()
- .HasMaxLength(20)
- .HasColumnType("nvarchar");
- b.Property<bool>("TipoPessoa")
- .HasColumnType("bit");
- b.Property<string>("UserId")
- .IsRequired()
- .HasColumnType("nvarchar(450)");
- b.HasKey("Id");
- b.HasIndex("UserId");
- b.ToTable("Candidato", (string)null);
- });
- modelBuilder.Entity("ConcursoProjetos.Domain.Entities.Documento", b =>
- {
- b.Property<long>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("bigint");
- SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
- b.Property<string>("ArquivoNomeOriginal")
- .IsRequired()
- .HasColumnType("nvarchar(max)");
- b.Property<long>("ArquivoTamanhoBytes")
- .HasColumnType("bigint");
- b.Property<DateTime>("DateDelete")
- .HasColumnType("datetime2");
- b.Property<DateTime>("DateInclude")
- .HasColumnType("datetime2");
- b.Property<string>("Descricao")
- .IsRequired()
- .HasColumnType("nvarchar");
- b.Property<bool>("IsDeleted")
- .HasColumnType("bit");
- b.Property<long>("ProjetoId")
- .HasColumnType("bigint");
- b.Property<long>("TipoDocumentoId")
- .HasColumnType("bigint");
- b.Property<bool>("UploadCompleto")
- .HasColumnType("bit");
- b.HasKey("Id");
- b.HasIndex("ProjetoId");
- b.HasIndex("TipoDocumentoId");
- b.ToTable("Documento", (string)null);
- });
- modelBuilder.Entity("ConcursoProjetos.Domain.Entities.Projeto", b =>
- {
- b.Property<long>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("bigint");
- SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
- b.Property<long>("CandidatoId")
- .HasColumnType("bigint");
- b.Property<Guid>("Codigo")
- .HasColumnType("uniqueidentifier");
- b.Property<DateTime>("DateDelete")
- .HasColumnType("datetime2");
- b.Property<DateTime>("DateInclude")
- .HasColumnType("datetime2");
- b.Property<bool>("IsDeleted")
- .HasColumnType("bit");
- b.Property<string>("Nome")
- .IsRequired()
- .HasMaxLength(100)
- .HasColumnType("nvarchar");
- b.Property<int>("NumeroUnidades")
- .HasColumnType("int");
- b.Property<string>("ResponsavelTecnicoCpf")
- .IsRequired()
- .HasMaxLength(11)
- .HasColumnType("nvarchar");
- b.Property<string>("ResponsavelTecnicoEmail")
- .IsRequired()
- .HasMaxLength(100)
- .HasColumnType("nvarchar");
- b.Property<string>("ResponsavelTecnicoNomeCompleto")
- .IsRequired()
- .HasMaxLength(100)
- .HasColumnType("nvarchar");
- b.Property<string>("ResponsavelTecnicoTelefone")
- .IsRequired()
- .HasMaxLength(20)
- .HasColumnType("nvarchar");
- b.HasKey("Id");
- b.HasIndex("CandidatoId");
- b.ToTable("Projeto", (string)null);
- });
- modelBuilder.Entity("ConcursoProjetos.Domain.Entities.TipoDocumento", b =>
- {
- b.Property<long>("Id")
- .HasColumnType("bigint");
- b.Property<string>("Descricao")
- .IsRequired()
- .HasColumnType("nvarchar");
- b.Property<string>("Nome")
- .IsRequired()
- .HasMaxLength(100)
- .HasColumnType("nvarchar");
- b.HasKey("Id");
- b.ToTable("TipoDocumento", (string)null);
- });
- modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b =>
- {
- b.Property<string>("Id")
- .HasColumnType("nvarchar(450)");
- b.Property<string>("ConcurrencyStamp")
- .IsConcurrencyToken()
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Name")
- .HasMaxLength(256)
- .HasColumnType("nvarchar(256)");
- b.Property<string>("NormalizedName")
- .HasMaxLength(256)
- .HasColumnType("nvarchar(256)");
- b.HasKey("Id");
- b.HasIndex("NormalizedName")
- .IsUnique()
- .HasDatabaseName("RoleNameIndex")
- .HasFilter("[NormalizedName] IS NOT NULL");
- b.ToTable("AspNetRoles", (string)null);
- });
- modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int");
- SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
- b.Property<string>("ClaimType")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("ClaimValue")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("RoleId")
- .IsRequired()
- .HasColumnType("nvarchar(450)");
- b.HasKey("Id");
- b.HasIndex("RoleId");
- b.ToTable("AspNetRoleClaims", (string)null);
- });
- modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int");
- SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
- b.Property<string>("ClaimType")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("ClaimValue")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("UserId")
- .IsRequired()
- .HasColumnType("nvarchar(450)");
- b.HasKey("Id");
- b.HasIndex("UserId");
- b.ToTable("AspNetUserClaims", (string)null);
- });
- modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
- {
- b.Property<string>("LoginProvider")
- .HasColumnType("nvarchar(450)");
- b.Property<string>("ProviderKey")
- .HasColumnType("nvarchar(450)");
- b.Property<string>("ProviderDisplayName")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("UserId")
- .IsRequired()
- .HasColumnType("nvarchar(450)");
- b.HasKey("LoginProvider", "ProviderKey");
- b.HasIndex("UserId");
- b.ToTable("AspNetUserLogins", (string)null);
- });
- modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
- {
- b.Property<string>("UserId")
- .HasColumnType("nvarchar(450)");
- b.Property<string>("RoleId")
- .HasColumnType("nvarchar(450)");
- b.HasKey("UserId", "RoleId");
- b.HasIndex("RoleId");
- b.ToTable("AspNetUserRoles", (string)null);
- });
- modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
- {
- b.Property<string>("UserId")
- .HasColumnType("nvarchar(450)");
- b.Property<string>("LoginProvider")
- .HasColumnType("nvarchar(450)");
- b.Property<string>("Name")
- .HasColumnType("nvarchar(450)");
- b.Property<string>("Value")
- .HasColumnType("nvarchar(max)");
- b.HasKey("UserId", "LoginProvider", "Name");
- b.ToTable("AspNetUserTokens", (string)null);
- });
- modelBuilder.Entity("ConcursoProjetos.Domain.Entities.Candidato", b =>
- {
- b.HasOne("ConcursoProjetos.Data.ApplicationUser", "User")
- .WithMany()
- .HasForeignKey("UserId")
- .OnDelete(DeleteBehavior.Restrict)
- .IsRequired();
- b.Navigation("User");
- });
- modelBuilder.Entity("ConcursoProjetos.Domain.Entities.Documento", b =>
- {
- b.HasOne("ConcursoProjetos.Domain.Entities.Projeto", "Projeto")
- .WithMany("Documentos")
- .HasForeignKey("ProjetoId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("ConcursoProjetos.Domain.Entities.TipoDocumento", "TipoDocumento")
- .WithMany()
- .HasForeignKey("TipoDocumentoId")
- .OnDelete(DeleteBehavior.Restrict)
- .IsRequired();
- b.Navigation("Projeto");
- b.Navigation("TipoDocumento");
- });
- modelBuilder.Entity("ConcursoProjetos.Domain.Entities.Projeto", b =>
- {
- b.HasOne("ConcursoProjetos.Domain.Entities.Candidato", "Candidato")
- .WithMany()
- .HasForeignKey("CandidatoId")
- .OnDelete(DeleteBehavior.Restrict)
- .IsRequired();
- b.Navigation("Candidato");
- });
- modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
- {
- b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
- .WithMany()
- .HasForeignKey("RoleId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- });
- modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
- {
- b.HasOne("ConcursoProjetos.Data.ApplicationUser", null)
- .WithMany()
- .HasForeignKey("UserId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- });
- modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
- {
- b.HasOne("ConcursoProjetos.Data.ApplicationUser", null)
- .WithMany()
- .HasForeignKey("UserId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- });
- modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
- {
- b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
- .WithMany()
- .HasForeignKey("RoleId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("ConcursoProjetos.Data.ApplicationUser", null)
- .WithMany()
- .HasForeignKey("UserId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- });
- modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
- {
- b.HasOne("ConcursoProjetos.Data.ApplicationUser", null)
- .WithMany()
- .HasForeignKey("UserId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- });
- modelBuilder.Entity("ConcursoProjetos.Domain.Entities.Projeto", b =>
- {
- b.Navigation("Documentos");
- });
- #pragma warning restore 612, 618
- }
- }
- }
|