I was wondering if there is already a way to create a separate autoincrement-ID-per-user field in Django?
Basically, I'm storing many related models and I need the IDs generated to be autoincrement per user.
I don't want to change how id
works, just need a new field that I can add which is unique=True per user.
Any suggestions (other than overriding save and implementing it myself)?