We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d641876 commit 95f7672Copy full SHA for 95f7672
src/api/modules/Catalog/Catalog.Infrastructure/Persistence/CatalogDbContext.cs
@@ -22,6 +22,7 @@ public CatalogDbContext(IMultiTenantContextAccessor<FshTenantInfo> multiTenantCo
22
protected override void OnModelCreating(ModelBuilder modelBuilder)
23
{
24
ArgumentNullException.ThrowIfNull(modelBuilder);
25
+ base.OnModelCreating(modelBuilder);
26
modelBuilder.ApplyConfigurationsFromAssembly(typeof(CatalogDbContext).Assembly);
27
modelBuilder.HasDefaultSchema(SchemaNames.Catalog);
28
}
0 commit comments