starlord btc
06/30/2022, 9:03 PMChris Tsongas
07/01/2022, 12:28 AMTasin Ishmam
07/01/2022, 6:00 AMnpx prisma db pull
3. Save the migrations in Prisma with npx prisma migrate dev
starlord btc
07/01/2022, 7:40 AMRichard Ward
07/01/2022, 9:04 AM~/prisma/migrations/xxx
folder
All the migration does is run the query so whatever you have in there is what is run..Tasin Ishmam
07/01/2022, 10:12 AMprisma migrate dev --create-only
to create a migration file, but not execute it. Afterwards, modify the SQL file as you please, before running the prisma migrate dev
command again to execute the migration.
Prisma places on us of requiring all structural parts of a database to be defined in a Prisma schemaThis was a design choice we made early on to make the schema a single source of truth for the database database structure. This is perhaps not suitable for everyone.
starlord btc
07/01/2022, 2:53 PMTasin Ishmam
07/02/2022, 12:21 AM