如何用typeorm初始化新数据库?使用时 typeorm schema:sync 已生成架构,但缺少迁移表。因此,如果我现在有一个较新的迁移,typeorm也会尝试应用较旧的迁移,这当然行不通。
typeorm schema:sync
ix0qys7i1#
不要使用 schema:sync 完全。始终使用 migration:generate 以及 migration:run 修改模式,包括第一次创建。当您需要创建一个全新的数据库时,只需运行所有迁移。
schema:sync
migration:generate
migration:run
1条答案
按热度按时间ix0qys7i1#
不要使用
schema:sync
完全。始终使用
migration:generate
以及migration:run
修改模式,包括第一次创建。当您需要创建一个全新的数据库时,只需运行所有迁移。