0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

prisma db pushをdry runする方法

Posted at

PrismaでDB schmeaを反映させるには prisma db pushを実行すれば良いですが、このコマンドは--dry-run的なオプションがありそうでありません。
事前に何が起こるのか確認したい場合には、以下のようにprisma migrate diffコマンドを利用できます。

prisma migrate diff \
  --from-schema-datasource=./prisma/schema.prisma \
  --to-schema-datamodel=./prisma/schema.prisma
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?