For a database. Should I use an UUID or an integer for the primary key?
I will never exceed 2^32 in amount of rows, so an integer should be more than plenty.
I would prefer to use an integer, as I find it easier to work with, especially when using different languages.
Question: What is the advantage of UUIDs over integers?