cool-team-official / cool-admin-midway

🔥 cool-admin(midway版)一个很酷的后台权限管理框架,Ai编码、流程编排、模块化、插件化、CRUD极速开发,永久开源免费,基于midway.js 3.x、typescript、typeorm、mysql、jwt、vue3、vite、element-ui等构建
https://cool-js.com
MIT License
2.65k stars 588 forks source link

关于表结构的同步,cool admin和midway存在差异,导致错误,辛苦请官方修改一下 #189

Open sdttt1 opened 1 month ago

sdttt1 commented 1 month ago

关于表结构的同步 typeorm cool admin 官方配置是 entities: ['*/modules//entity']

参考midway官方得到的配置是 entities: ['/modules//entity/.ts'], migrations: ['/modules//migration/.ts']

使用cool admin 官方配置执行 npx mwtypeorm migration:generate -d ./src/config/config.local.ts src/modules/czz/migration/test 运行结果为No changes in database schema were found - cannot generate a migration. To create a new empty migration use "typeorm migration:create" command;

使用参考midway官方得到的配置执行 npx mwtypeorm migration:generate -d ./src/config/config.local.ts src/modules/czz/migration/test 运行结果成功生成。

使用参考midway官方得到的配置时系统无法运行,希望官方能修改一下,让我们能够使用typeorm的cli功能