fix(create-medusa-app): use db:migrate to run migrations (#9565)

This commit is contained in:
Shahed Nasser
2024-10-14 18:54:05 +03:00
committed by GitHub
parent ebb16d6020
commit 86f744cf3b
2 changed files with 2 additions and 2 deletions

View File

@@ -145,7 +145,7 @@ export default async ({
await processManager.runProcess({
process: async () => {
const proc = await execute(
["npx medusa migrations run && npx medusa links sync", npxOptions],
["npx medusa db:migrate", npxOptions],
{ verbose, needOutput: true }
)