From 040f3065c52ce95396ee29f30d071c389613f704 Mon Sep 17 00:00:00 2001 From: MaksimChegulov Date: Thu, 7 Oct 2021 12:51:10 +0300 Subject: [PATCH] fix --- common/ASC.Core.Common/EF/Context/DbContext.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/ASC.Core.Common/EF/Context/DbContext.cs b/common/ASC.Core.Common/EF/Context/DbContext.cs index 39ec49b195..cd86548e8d 100644 --- a/common/ASC.Core.Common/EF/Context/DbContext.cs +++ b/common/ASC.Core.Common/EF/Context/DbContext.cs @@ -39,7 +39,8 @@ namespace ASC.Core.Common.EF.Context ModelBuilderWrapper .From(modelBuilder, Provider) .AddMobileAppInstall() - .AddDbipLocation(); + .AddDbipLocation() + .AddRegions(); } }