Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
投稿モデルとコメントモデルがあり、ユーザーモデルを作成したいと思います。ユーザーhas_manyposts、およびpostbelongs_touser。ジェネレーターを使用してコメントモデルを作成したとき、post:referencesを使用したので、user_id列をPostモデルに手動で追加する必要がありますか?
はい。
rails generate migration AddUserIdToPosts user_id:integer
手動で *belongs_to user* を Post モデルに入れます。