mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-26 01:06:00 +03:00
[GH-ISSUE #5617] [bug]: pnpm dlx prisma migrate deploy does not work anymore in old versions. #2173
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#2173
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Breee on GitHub (Nov 25, 2025).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/5617
Is there an existing issue for this?
Platform
Web App
Browser
Chrome
Operating System
Linux
Bug Description
hoppscotch/hoppscotch-backend:2025.5.4(Yes its old, because we had some troubles updating it)pnpm dlx prisma migrate deployin an init container (This is meant for updates and should not really do anything if the container is just restarted without bumping the version)Deployment Type
Self-hosted (on-prem deployment)
Version
2025.5.4
@jamesgeorge007 commented on GitHub (Nov 25, 2025):
Hi, this appears related to #5600. Could you please try running
pnpm exec prisma migrate deployinstead ofpnpm dlx? The concern with usingdlxis that it downloads the latest version of Prisma (v7), which requires a newer version of Node.js than what is currently available in your container.@Breee commented on GitHub (Nov 25, 2025):
That seems to help, thanks