Generating UUIDs With pgcrypto
If you check out the docs for the uuid-ossp
extension, you'll come across the following message.
The OSSP UUID library... is not well maintained, and is becoming increasingly difficult to port to newer platforms.
A little bit later, it says:
If you only need randomly-generated (version 4) UUIDs, consider using the gen_random_uuid() function from the pgcrypto module instead.
So, if we are using the UUID data type and only need to generate random UUIDs, we can rely on the pgcrypto
extension. It comes with the gen_random_uuid()
function which generates random v4 UUIDs.
Last updated