25 lines
790 B
C#
25 lines
790 B
C#
using System.Reflection;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace AutobusApi.Infrastructure.Identity;
|
|
|
|
public class ApplicationIdentityDbContext : IdentityDbContext<ApplicationUser, IdentityRole<int>, int>
|
|
{
|
|
public ApplicationIdentityDbContext(DbContextOptions<ApplicationIdentityDbContext> options)
|
|
: base(options) { }
|
|
|
|
protected override void OnModelCreating(ModelBuilder builder)
|
|
{
|
|
base.OnModelCreating(builder);
|
|
|
|
builder.HasDefaultSchema("identity");
|
|
|
|
builder.ApplyConfigurationsFromAssembly(
|
|
Assembly.GetExecutingAssembly(),
|
|
t => t.Namespace == "AutobusApi.Infrastructure.Identity.Configurations"
|
|
);
|
|
}
|
|
}
|