这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
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.
 
 
 
 
 
 
feijie 6fd4215305 feat(docs): 添加数据迁移模块文档 1 year ago
..
Properties upgrade abp framework to 7.0.0 3 years ago
LY.MicroService.RealtimeMessage.DbMigrator.csproj feat: 添加新的配置选项以支持 PostgreSQL 1 year ago
Program.cs deploy: add once deployment script 2 years ago
README.EN.md feat(docs): 添加数据迁移模块文档 1 year ago
README.md feat(docs): 添加数据迁移模块文档 1 year ago
RealtimeMessageDbMigratorHostedService.cs deploy: add once deployment script 2 years ago
RealtimeMessageDbMigratorModule.Configure.cs feat(migrations): 创建独立的迁移脚本项目. 3 years ago
RealtimeMessageDbMigratorModule.cs deploy: add once deployment script 2 years ago
Usings.cs upgrade abp framework to 7.0.0 3 years ago
appsettings.json fix(configuration): fixed #945 2 years ago

README.md

LY.MicroService.RealtimeMessage.DbMigrator

实时消息数据库迁移控制台应用程序,用于执行实时消息系统的数据库迁移和初始化种子数据。

English

功能特性

  • 自动执行数据库迁移
  • 初始化系统必要的种子数据
  • 支持命令行参数配置
  • 集成Autofac依赖注入容器
  • 继承实时消息系统的所有迁移功能
  • 支持SignalR消息管理
  • 支持消息分组管理
  • 支持消息订阅管理
  • 支持消息历史记录

模块依赖

[DependsOn(
    typeof(RealtimeMessageMigrationsEntityFrameworkCoreModule),
    typeof(AbpAutofacModule)
)]

配置项

{
  "ConnectionStrings": {
    "RealtimeMessageDbMigrator": "你的数据库连接字符串"
  }
}

基本用法

  1. 配置数据库连接字符串

    • 在appsettings.json中配置RealtimeMessageDbMigrator连接字符串
  2. 运行迁移程序

    dotnet run
    

命令行参数

  • --database-provider
    • 指定数据库提供程序 (默认: MySQL)
  • --connection-string
    • 指定数据库连接字符串
  • --skip-db-migrations
    • 跳过数据库迁移
  • --skip-seed-data
    • 跳过种子数据初始化

种子数据

  • 默认消息组配置
  • 基础消息订阅配置
  • 系统消息模板
  • 默认权限配置

更多信息