// using API.Database; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; #nullable disable namespace API.Migrations { [DbContext(typeof(ApplicationDbContext))] partial class ApplicationDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder.HasAnnotation("ProductVersion", "9.0.11"); modelBuilder.Entity("API.Models.Internal.Altersgruppen.AltersGruppe", b => { b.Property("Id") .HasMaxLength(26) .HasColumnType("TEXT"); b.Property("EndingAge") .HasColumnType("INTEGER"); b.Property("Name") .IsRequired() .HasMaxLength(100) .HasColumnType("TEXT"); b.Property("StartingAge") .HasColumnType("INTEGER"); b.HasKey("Id"); b.ToTable("Altersgruppen"); }); #pragma warning restore 612, 618 } } }