UUIDs

Learn about UUIDs and the UUID anti-pattern in PostgreSQL.

We'll cover the following...

Anti-pattern

The PostgreSQL data type UUID allows for 128-bit synthetic keys rather than 32 bits with serial or 64 bits with bigserial.

Sequences

The serial family of data types is built on a sequence with a standard defined ...