use prisma deploy as default for migrate, add migrate:dev command
This commit is contained in:
parent
c046e6c53a
commit
01723a94dc
|
@ -24,7 +24,8 @@
|
|||
"test:integration:ci": "npm run migrate:test:ci && dotenv -e ci/.env.ci -- jest --testPathPattern 'tests/integration/' --runInBand",
|
||||
"test:cov": "jest --testPathPattern 'tests/unit/' --coverage",
|
||||
"test:e2e": "jest --config ./test/jest-e2e.json",
|
||||
"migrate": "docker exec v3-user-api sh -c 'npx prisma migrate dev'",
|
||||
"migrate": "docker exec v3-user-api sh -c 'npx prisma migrate deploy'",
|
||||
"migrate:dev": "docker exec v3-user-api sh -c 'npx prisma migrate dev'",
|
||||
"migrate:test": "dotenv -e .env.test -- npx prisma migrate deploy",
|
||||
"migrate:test:ci": "dotenv -e ci/.env.ci -- npx prisma migrate deploy",
|
||||
"migrate:deploy": "npx prisma migrate deploy"
|
||||
|
|
Loading…
Reference in New Issue