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.9 KiB
1.9 KiB
LY.MicroService.TaskManagement.EntityFrameworkCore
Task Management Database Migration Module, providing database migration functionality for the task management system.
Features
- Integrated SaaS multi-tenancy data migration
- Integrated Task Management data migration
- Integrated Setting Management data migration
- Integrated Permission Management data migration
- Integrated Feature Management data migration
- Support for MySQL database
Module Dependencies
[DependsOn(
typeof(AbpSaasEntityFrameworkCoreModule),
typeof(TaskManagementEntityFrameworkCoreModule),
typeof(AbpEntityFrameworkCoreMySQLModule),
typeof(AbpSettingManagementEntityFrameworkCoreModule),
typeof(AbpPermissionManagementEntityFrameworkCoreModule),
typeof(AbpFeatureManagementEntityFrameworkCoreModule),
typeof(AbpDataDbMigratorModule)
)]
Configuration
{
"ConnectionStrings": {
"TaskManagementDbMigrator": "Your database connection string"
}
}
Basic Usage
-
Configure Database Connection String
- Configure TaskManagementDbMigrator connection string in appsettings.json
-
Add Module Dependency
[DependsOn(typeof(TaskManagementMigrationsEntityFrameworkCoreModule))] public class YourModule : AbpModule { // ... }
Database Tables Description
- AbpTasks - Task basic information table
- AbpTaskCategories - Task categories table
- AbpTaskStatuses - Task statuses table
- AbpTaskAssignments - Task assignments table
- Saas Related Tables - Tenant, edition and other multi-tenancy related data
- AbpSettings - System settings data
- AbpPermissionGrants - Permission authorization data
- AbpFeatures - Feature data