PostgreSQL 18 introduces a native `uuidv7()` function, enabling time-sortable UUIDs as primary keys without extensions. Using UUIDv7 with Ecto requires three specific changes: setting `primary_key: false` on the table and manually adding an `id` column with `default: fragment("uuidv7()")` in the migration, then disabling

Sort: