我在创建迁移时出错:
npx typeorm migrations:create -n CreateMyTable
我尚未在GIT上提交此更改,
要正确删除迁移,仅删除文件?
在后台服务器上,我看到的代码是“ migrationsRun:true”?
await createConnection({
type: 'postgres',
url: process.env.DATABASE_URL,
synchronize: false,
entities: [`${__dirname}/entity/**\.*?s`],
migrations: [`${__dirname}/migrations/**\.*?s`],
migrationsRun: true,
执行迁移的确切含义是什么?下次我做“ npm start”吗?