Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

silva celso
13,513 PointsAssume that a pets table already exists. Here at the command line, generate a migration that will add an owner_id foreig
can not seem to get pass this question,
Assume that a pets table already exists. Here at the command line, generate a migration that will add an owner_id foreign key column to the pets table.
1 Answer

jide delano
14,185 PointsSInce you are adding a column to an already existing table, you need to generate a new migration with the following:
rails generate migration AddOwner_IdToPets owner_id:integer:index
Elita Judjallo
10,951 PointsElita Judjallo
10,951 Pointsbin/rails g migration AddOwnerToPets owner_id:integer:index
Its worked for me