I’m having a little trouble trying to wrap my head around how I’d represent this data structure using django models. In the application I’m working on users can upload tracks. I use a Track model for that. We want users to have a collection of tracks associated with their account (tracks they have favorited for example). The collection is just references to the id for the track model. Does anyone have any advice on how to go about designing such a data structure?
Share
give each track a
or maybe
if you can have more than one user have the same track …