問題タブ [pgcrypto]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
80 参照

ruby-on-rails - Ruby on Rails + Postgres の移行で、db:migrate ごとに schema.rb から enable_extension "pgcrypto" が削除される

この行は、移行するたびに schema.rb ファイルから削除されます。

enable_extension "pgcrypto"

…でも、理由がわかりません!いいえ、拡張機能を削除した場所はありません。移行スタックの非常に早い段階 (数か月前) に追加する移行があります。

これは始まったばかりで、何も変更/更新していません。

考え?

0 投票する
1 に答える
48 参照

postgresql - How to use pgcrypto with prisma

Looking at how to implement hash+salt password storing strategy in NodeJS using bcrypt I found this article, which suggests using native Postgress function pgcrypto.

Prisma docs have an example of using pgcrypto only for generating random id, as a @default value in the Prisma schema.

I'm curious if pgcrypto can be used with Prisma, as in this use case it's not a default value, but a transformation to the value given to the DB at the moment of creating of the record.