// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace GerbilManagerWebAPI.Migrations { [DbContext(typeof(ApplicationContext))] [Migration("20260605213640_InitialCreate")] partial class InitialCreate { /// protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "10.0.8") .HasAnnotation("Relational:MaxIdentifierLength", 63); NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); modelBuilder.Entity("GerbilManagerWebAPI.Models.Breeder", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("uuid"); b.Property("Name") .IsRequired() .HasColumnType("text"); b.HasKey("Id"); b.ToTable("Breeders", (string)null); }); modelBuilder.Entity("GerbilManagerWebAPI.Models.Gerbil", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("uuid"); b.Property("BreederId") .HasColumnType("uuid"); b.Property("Gender") .IsRequired() .HasColumnType("text"); b.Property("LitterId") .HasColumnType("uuid"); b.Property("Name") .IsRequired() .HasColumnType("text"); b.HasKey("Id"); b.HasIndex("BreederId"); b.HasIndex("LitterId"); b.ToTable("Gerbils", (string)null); }); modelBuilder.Entity("GerbilManagerWebAPI.Models.Litter", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("uuid"); b.Property("Date") .HasColumnType("timestamp with time zone"); b.Property("FatherId") .HasColumnType("uuid"); b.Property("MotherId") .HasColumnType("uuid"); b.Property("Name") .IsRequired() .HasColumnType("text"); b.Property("Strength") .HasColumnType("integer"); b.HasKey("Id"); b.HasIndex("FatherId"); b.HasIndex("MotherId"); b.ToTable("Litters", (string)null); }); modelBuilder.Entity("GerbilManagerWebAPI.Models.Gerbil", b => { b.HasOne("GerbilManagerWebAPI.Models.Breeder", "Breeder") .WithMany() .HasForeignKey("BreederId"); b.HasOne("GerbilManagerWebAPI.Models.Litter", "Litter") .WithMany() .HasForeignKey("LitterId"); b.Navigation("Breeder"); b.Navigation("Litter"); }); modelBuilder.Entity("GerbilManagerWebAPI.Models.Litter", b => { b.HasOne("GerbilManagerWebAPI.Models.Gerbil", "Father") .WithMany() .HasForeignKey("FatherId"); b.HasOne("GerbilManagerWebAPI.Models.Gerbil", "Mother") .WithMany() .HasForeignKey("MotherId"); b.Navigation("Father"); b.Navigation("Mother"); }); #pragma warning restore 612, 618 } } }