J'ai trouvé des questions sur les associations de Rails qui ressemblaient un peu à ma question, mais je n'arrive pas à comprendre comment utiliser belongs_to
de modèles multiples.
Voici la structure de la table que j'ai l'intention d'avoir:
User
id
Post
id
user_id #foreign key; a post belongs to a User aka "Who created this post"
Comment
id
user_id #foreign key; a comment belongs to a User aka "Who made this comment"
post_id #foreign key; a comment belongs to a Post aka "What post this comment is for"
Et les associations :
User
has_many :posts
has_many :comments
Post
belongs_to :user
has_many :comments
Comment
belongs_to :user
belongs_to :post
Est-ce la bonne approche?