TypeORM 迁移运行命令无法正常工作

发布于 2025-01-10 20:41:21 字数 590 浏览 0 评论 0原文

我正在尝试使用 TypeORM 迁移创建表。我能够使用迁移脚本生成,但是当我尝试运行迁移脚本时,它没有生成所需的表。

我的 package.json 脚本属性如下所示:-

"scripts": {
    "typeorm": "ts-node -transpile-only node_modules/typeorm/cli.js",
    "migration:generate": "typeorm migration:generate -n",
    "migration:run": "typeorm migration:run"
}

要生成,我使用此命令:-

npm run migration:generate testmigrate

要运行,我使用此命令:-

npm run migration:run

上面的运行命令也有效,但它只是创建迁移表并且类型元数据表。尽管实体路径已正确定义,但它并未创建实体。

需要这方面的帮助。

I am trying to create my tables using TypeORM migrations. I am able to generate with migration script but when i am trying to run the migration script it is not generating the required tables.

My package.json scripts property looks like this:-

"scripts": {
    "typeorm": "ts-node -transpile-only node_modules/typeorm/cli.js",
    "migration:generate": "typeorm migration:generate -n",
    "migration:run": "typeorm migration:run"
}

To generate I am using this command :-

npm run migration:generate testmigrate

To run I am using this command :-

npm run migration:run

The above run command also works but it is just creating migrations table and typeorm-metadata table. It is not creating the entities although entities path are properly defined.

Need help on this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤寂小茶 2025-01-17 20:41:22

您应该包含您的 datasource.ts 文件或 typeorm.ts 文件

You should include your datasource.ts file or your typeorm.ts file

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文