I just did an `npx prisma migrate dev` , any reaso...
# orm-help
n
I just did an
npx prisma migrate dev
, any reason why Prisma is converting
table.column_unique
to
table.column_key
?
r
@Nathaniel Babalola 👋 Did you recently upgrade from Prisma 2 to 3?
n
Yes @Ryan
r
In that case, you would need to follow the upgrade path as described here.
n
@Ryan thanks , read it.....I think I'd rather downgrade
j
@Nathaniel Babalola what scared you in there? I’m curious to know 🙂
n
@Joël not ready to risk anything by introspecting or db pull, as I have already made changes to my schema. It's just easier/safer to npm install a lower version and run
migrate
and have it work as expected.
👍 1