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 trial

Ruby Active Record Associations in Rails Active Record Associations A "Has Many" Migration

Assume 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.

Elita Judjallo
Elita Judjallo
11,842 Points

bin/rails g migration AddOwnerToPets owner_id:integer:index

Its worked for me

1 Answer

jide delano
seal-mask
.a{fill-rule:evenodd;}techdegree
jide delano
Python Development Techdegree Student 14,220 Points

SInce 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