Ignore:
Timestamp:
10/28/25 10:51:32 (11 months ago)
Author:
GitHub <noreply@…>
Branches:
master
Children:
4708118
Parents:
b38c39c (diff), c2e73b6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Boris Gjorgjievski <69085722+imbrsk@…> (10/28/25 10:51:32)
git-committer:
GitHub <noreply@…> (10/28/25 10:51:32)
Message:

Merge branch 'Dev' into feature/getUser

File:
1 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/Migrations/AppDbContextModelSnapshot.cs

    rb38c39c rff202cf  
    2424
    2525            modelBuilder.Entity("iknow_api.Models.ContactInfo", b =>
     26            modelBuilder.Entity("iknow_api.Models.RefreshToken", b =>
    2627                {
    2728                    b.Property<int>("Id")
     
    105106
    106107                    b.ToTable("HighSchool");
     108                    b.Property<DateTime>("ExpiresAt")
     109                        .HasColumnType("timestamp with time zone");
     110
     111                    b.Property<bool>("IsValid")
     112                        .HasColumnType("boolean");
     113
     114                    b.Property<string>("Token")
     115                        .IsRequired()
     116                        .HasColumnType("text");
     117
     118                    b.Property<int>("UserId")
     119                        .HasColumnType("integer");
     120
     121                    b.HasKey("Id");
     122
     123                    b.HasIndex("UserId");
     124
     125                    b.ToTable("RefreshToken");
    107126                });
    108127
     
    149168                        .WithOne("ContactInfo")
    150169                        .HasForeignKey("iknow_api.Models.ContactInfo", "UserId")
     170            modelBuilder.Entity("iknow_api.Models.RefreshToken", b =>
     171                {
     172                    b.HasOne("iknow_api.Models.User", "User")
     173                        .WithMany()
     174                        .HasForeignKey("UserId")
    151175                        .OnDelete(DeleteBehavior.Cascade)
    152176                        .IsRequired();
Note: See TracChangeset for help on using the changeset viewer.