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.
1.3 KiB
1.3 KiB
LY.MicroService.TaskManagement.DbMigrator
任务管理数据库迁移控制台应用程序,用于执行任务管理系统的数据库迁移和初始化种子数据。
功能特性
- 自动执行数据库迁移
- 初始化系统必要的种子数据
- 支持命令行参数配置
- 集成Autofac依赖注入容器
- 继承任务管理系统的所有迁移功能
模块依赖
[DependsOn(
typeof(TaskManagementMigrationsEntityFrameworkCoreModule),
typeof(AbpAutofacModule)
)]
配置项
{
"ConnectionStrings": {
"TaskManagementDbMigrator": "你的数据库连接字符串"
},
"IdentityServer": {
"Clients": {
"TaskManagement_App": {
"ClientId": "TaskManagement_App"
}
}
}
}
基本用法
-
配置数据库连接字符串
- 在appsettings.json中配置TaskManagementDbMigrator连接字符串
-
运行迁移程序
dotnet run
命令行参数
- --database-provider
- 指定数据库提供程序 (默认: MySQL)
- --connection-string
- 指定数据库连接字符串
- --skip-db-migrations
- 跳过数据库迁移
- --skip-seed-data
- 跳过种子数据初始化