In a Phoenix (Postgres) app I’m currently using standard numeric IDs, but I’d like to switch to UUIDv7 as ordered identifiers with Base62 encoding for short, readable urls, and support for route interpolation, so ~p"/user/#{@user}" still works.
I’ve found a few libraries and blog posts from around 2023, but most have not been updated since, so I’m wondering if I missed something built-in, or if we’re still mostly using either integer IDs, or UUIDv4 with dashed 32-digit hex strings?
Thank you!






















