Browse Source

Add UserPasswordHistories DbSet to IIdentityDbContext

pull/23907/head
maliming 4 months ago
parent
commit
b1a9ddbee2
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 2
      modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo/Abp/Identity/EntityFrameworkCore/IIdentityDbContext.cs

2
modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo/Abp/Identity/EntityFrameworkCore/IIdentityDbContext.cs

@ -22,4 +22,6 @@ public interface IIdentityDbContext : IEfCoreDbContext
DbSet<IdentityUserDelegation> UserDelegations { get; }
DbSet<IdentitySession> Sessions { get; }
DbSet<IdentityUserPasswordHistory> UserPasswordHistories { get; }
}

Loading…
Cancel
Save