18 lines
498 B
C#
18 lines
498 B
C#
using Core.Entities.Identity;
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Infrastructure.Identity
|
|
{
|
|
public class AppIdentityDbContext : IdentityDbContext<AppUser>
|
|
{
|
|
public AppIdentityDbContext(DbContextOptions<AppIdentityDbContext> options) : base(options)
|
|
{
|
|
}
|
|
|
|
protected override void OnModelCreating(ModelBuilder builder)
|
|
{
|
|
base.OnModelCreating(builder);
|
|
}
|
|
}
|
|
} |