Suppose I want to create an app which has forums, blogs and groups. Now, each of them can have comments.
Should I create tables like ForumComments , BlogComments and GroupComments separately or should there be only one Comments model and I should store the id of the parent model in it for reference?
No responses yet.