For Users on a website, what is the best way to store information in Django with databases. The website I’m working on has the following sections:
- A sort of chat room where users can post comments.
- A set of documents that are public to other users.
- Reviews for each document
The question is, where should the documents be stored? (I don’t know how many each person will have). For each doc, where should the reviews be stored? (I don’t know how many reviews there will be).
I’m very new to Django and have only just started the book I bought, but need to begin planning in order to get it done by august (Is that even possible for someone so new?).
Straight forward OOP, you should just create a Model (object) for each artifact – for example:
And so on…