You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
934 B
27 lines
934 B
using LINGYUN.Abp.Data.DbMigrator;
|
|
using LINGYUN.Abp.Identity.EntityFrameworkCore;
|
|
using LINGYUN.Abp.IdentityServer.EntityFrameworkCore;
|
|
using LINGYUN.Abp.Saas.EntityFrameworkCore;
|
|
using LINGYUN.Abp.WeChat;
|
|
using Volo.Abp.Autofac;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.PermissionManagement.EntityFrameworkCore;
|
|
|
|
namespace LY.MicroService.IdentityServer.DbMigrator;
|
|
|
|
[DependsOn(
|
|
typeof(AbpSaasEntityFrameworkCoreModule),
|
|
typeof(AbpIdentityEntityFrameworkCoreModule),
|
|
typeof(AbpIdentityServerEntityFrameworkCoreModule),
|
|
typeof(AbpPermissionManagementEntityFrameworkCoreModule),
|
|
typeof(AbpWeChatModule),
|
|
typeof(AbpDataDbMigratorModule),
|
|
typeof(AbpAutofacModule)
|
|
)]
|
|
public partial class IdentityServerDbMigratorModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
ConfigureDbContext(context.Services);
|
|
}
|
|
}
|
|
|