I was wondering if there is a way to create a separate autoincrement-ID-per-user field in Django?
Basically, I store many related models, and I need identifiers created to automatically create for each user.
I donβt want to change how it works id, I just need a new field that I can add, which is unique = True for the user.
Any suggestions (other than overriding persistence and its implementation)?
source
share