Hi there, Is there a standard practice for prisma ...
# orm-help
j
Hi there, Is there a standard practice for prisma apps in creating data migrations?
There is a lot of documentation about schema migrations, but what about managing data migrations that may not use sql?
r
@Jack Reed 👋 We don’t have a standard practice, but here’s a good guide 🙂
The general recommendation would be to separate data migrations from schema migrations, and run them with a different system, potentially by hand.
j
Got it thanks. Rails does some nice stuff around up/down and so did Redwood so was wondering if there was an approach that the prisma community agreed on
r
We didn’t generally want to go for
up/down
migrations at the moment, but we would be considering something like this in the future which could possibly have an
up/down
like migration style.
j
Oh thanks for that. Yeah it would be great to see that in prisma for sure.
💯 1