using Microsoft.AspNetCore.Identity.EntityFrameworkCore; namespace Hutopy.Modules.Identity.Data { public class IdentityDbContext( DbContextOptions options) : IdentityDbContext(options) { public const string SchemaName = "Identity"; protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); modelBuilder.HasDefaultSchema(SchemaName); } } }