Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialsilva 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
Python Development Techdegree Student 14,220 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
11,963 PointsElita Judjallo
11,963 Pointsbin/rails g migration AddOwnerToPets owner_id:integer:index
Its worked for me