Changeset ff202cf for iknow-api/Migrations/AppDbContextModelSnapshot.cs
- Timestamp:
- 10/28/25 10:51:32 (11 months ago)
- 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)
- File:
-
- 1 edited
-
iknow-api/Migrations/AppDbContextModelSnapshot.cs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
iknow-api/Migrations/AppDbContextModelSnapshot.cs
rb38c39c rff202cf 24 24 25 25 modelBuilder.Entity("iknow_api.Models.ContactInfo", b => 26 modelBuilder.Entity("iknow_api.Models.RefreshToken", b => 26 27 { 27 28 b.Property<int>("Id") … … 105 106 106 107 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"); 107 126 }); 108 127 … … 149 168 .WithOne("ContactInfo") 150 169 .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") 151 175 .OnDelete(DeleteBehavior.Cascade) 152 176 .IsRequired();
Note:
See TracChangeset
for help on using the changeset viewer.
