[Answer]-Django Model Design. Want users to have "Collections" of other model instances

1👍

give each track a

owner = ForeignKey(User)

or maybe

class User:
    ...
    tracks = ManyToManyField(Track) 

if you can have more than one user have the same track …

Leave a comment