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 More Association Options A Migration for a Polymorphic Association

Muhammad sharifi
Muhammad sharifi
4,455 Points

anyone can tell me the correct command?

We need to be able to specify that a Part model belongs to either a Car or a Truck (which we will refer to as "vehicles"). Assume that cars and parts tables already exist. Here at the command line, generate a migration that will add vehicle_id and vehicle_type columns to the parts table.

Adriana Cabrera
Adriana Cabrera
14,618 Points

This is what works for me rails g migration AddVehicleToParts vehicle_id:integer vehicle_type:string

3 Answers

Hi there,

For this you you need to use the rails generate command to create a migration. To tell the framework which table to modify, you can use title case to say, for example, AddColumnsToExample where Example is the table you are adding the columns to.

Next, specify the name of the column and the data type, separated by a colon. You're given these in the question. There's vehicle_id which we can assume is an integer and vehicle_type which I called a string.

Tying all that together and you should get through the challenge

Steve.

Nicolás Melgarejo
Nicolás Melgarejo
14,154 Points

I'm trying

rails g migration AddVehicleToPart vehicle_id:integer vehicle_type:string

bin/rails g migration AddVehicleToParts vehicle_id:integer vehicle_type:string for me worked Parts instead of Part