0
chenxm created
-
ABP Framework version: v5.2.0
-
UI type: MVC
-
DB provider: EF Core
-
Tiered (MVC) or Identity Server Separated (Angular): yes
-
Exception message and stack trace: missing data migration script.
-
Steps to reproduce the issue:"
-
Enter the services/administration directory
-
execute
abp add-module Volo.CmsKit.Pro
-
Add the following code to PreConfigureServices of AdministrationServiceDomainSharedModule :
`GlobalFeatureManager.Instance.Modules.CmsKit(cmsKit =>
{
cmsKit.EnableAll();
});
GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro =>
{
cmsKitPro.EnableAll();
});`
-
execute
dotnet ef migrations add CreateCmsKitProEntities
I've tried to add it manually, and it's still the same.