currently all id attributes are Long which are just numbers that counts up for each new row, we want this to be an id that is not predictable and doesnt give away how many orders, users and products exists in the database.
Options are
- UUIDs
- NanoIDs, a combination of letters, numbers, sometimes also symbols.
currently all id attributes are Long which are just numbers that counts up for each new row, we want this to be an id that is not predictable and doesnt give away how many orders, users and products exists in the database.
Options are