// using System; using GermanApp.Infrastructure.Data.DbContext; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace GermanApp.Migrations { [DbContext(typeof(AppDbContext))] partial class AppDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "9.0.0") .HasAnnotation("Relational:MaxIdentifierLength", 63); NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); modelBuilder.Entity("GermanApp.Domain.Entities.Lesson", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("Description") .IsRequired() .HasMaxLength(2000) .HasColumnType("character varying(2000)"); b.Property("IsActive") .ValueGeneratedOnAdd() .HasColumnType("boolean") .HasDefaultValue(true); b.Property("LevelId") .HasColumnType("integer"); b.Property("Order") .HasColumnType("integer"); b.Property("Title") .IsRequired() .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("Topic") .IsRequired() .HasMaxLength(100) .HasColumnType("character varying(100)"); b.Property("UpdatedAt") .HasColumnType("timestamp with time zone"); b.HasKey("Id"); b.HasIndex("LevelId", "Order") .IsUnique(); b.ToTable("Lessons"); }); modelBuilder.Entity("GermanApp.Domain.Entities.Level", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("Code") .IsRequired() .HasMaxLength(10) .HasColumnType("character varying(10)"); b.Property("Name") .IsRequired() .HasMaxLength(100) .HasColumnType("character varying(100)"); b.Property("Order") .HasColumnType("integer"); b.HasKey("Id"); b.HasIndex("Code") .IsUnique(); b.HasIndex("Order") .IsUnique(); b.ToTable("Levels"); }); modelBuilder.Entity("GermanApp.Domain.Entities.RefreshToken", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("ExpiresAt") .HasColumnType("timestamp with time zone"); b.Property("IsActive") .ValueGeneratedOnAdd() .HasColumnType("boolean") .HasDefaultValue(true); b.Property("RevokedAt") .HasColumnType("timestamp with time zone"); b.Property("Token") .IsRequired() .HasMaxLength(255) .HasColumnType("character varying(255)"); b.Property("UserId") .HasColumnType("integer"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("RefreshTokens"); }); modelBuilder.Entity("GermanApp.Domain.Entities.User", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("CurrentLevel") .IsRequired() .ValueGeneratedOnAdd() .HasMaxLength(10) .HasColumnType("character varying(10)") .HasDefaultValue("A1"); b.Property("Email") .IsRequired() .HasMaxLength(100) .HasColumnType("character varying(100)"); b.Property("PasswordHash") .IsRequired() .HasMaxLength(255) .HasColumnType("character varying(255)"); b.Property("Streak") .ValueGeneratedOnAdd() .HasColumnType("integer") .HasDefaultValue(0); b.Property("TotalPoints") .ValueGeneratedOnAdd() .HasColumnType("integer") .HasDefaultValue(0); b.Property("Username") .IsRequired() .HasMaxLength(50) .HasColumnType("character varying(50)"); b.HasKey("Id"); b.HasIndex("Email") .IsUnique(); b.HasIndex("Username") .IsUnique(); b.ToTable("Users"); }); modelBuilder.Entity("GermanApp.Domain.Entities.UserProgress", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("IsCompleted") .ValueGeneratedOnAdd() .HasColumnType("boolean") .HasDefaultValue(false); b.Property("LastAttemptDate") .HasColumnType("timestamp with time zone"); b.Property("LessonId") .HasColumnType("integer"); b.Property("QuizScore") .ValueGeneratedOnAdd() .HasColumnType("integer") .HasDefaultValue(0); b.Property("UserId") .HasColumnType("integer"); b.HasKey("Id"); b.HasIndex("LessonId"); b.HasIndex("UserId", "LessonId") .IsUnique(); b.ToTable("UserProgress"); }); modelBuilder.Entity("GermanApp.Domain.Entities.Lesson", b => { b.HasOne("GermanApp.Domain.Entities.Level", "Level") .WithMany() .HasForeignKey("LevelId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Level"); }); modelBuilder.Entity("GermanApp.Domain.Entities.RefreshToken", b => { b.HasOne("GermanApp.Domain.Entities.User", null) .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("GermanApp.Domain.Entities.UserProgress", b => { b.HasOne("GermanApp.Domain.Entities.Lesson", "Lesson") .WithMany() .HasForeignKey("LessonId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("GermanApp.Domain.Entities.User", "User") .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Lesson"); b.Navigation("User"); }); #pragma warning restore 612, 618 } } }