Hi everyone , is there any way to seed your Databa...
# orm-help
a
Hi everyone , is there any way to seed your Database multiple times without running prisma reset command I am using the command down below (but it works just one time after migration and you need to reset to run it again)
Copy code
prisma db seed --preview-feature
And I'm following this page: https://www.prisma.io/docs/guides/database/seed-database
j
If your run it once, the data is seeded, right? Why do you want to run it again? To create more data?
a
I've seeded some part of it with test nonsense data , now I want to keep some part of previous seeded data and remove that part which is nonsense and seed it again @janpio
j
And calling
prisma db seed
again does not achieve that?
a
yes , correct
j
How so?