Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
class User < ActiveRecord::Base

has_many :comments

end


class Comment < ActiveRecord::Base

belongs_to :user

end

Then I ran: rake db:migrate. I don't get a "user_id" field/column in my Comment table. I also tried: rake db:drop, rake db:create and rake db:migrate. I'm probably missing a step, any ideas?

share|improve this question

2 Answers

up vote 3 down vote accepted

You have to define the migration.

when you create the comments model by

rails generate model comment

rails also generate the migration file in your_appication_root/db/migrate/.

class CreateComments < ActiveRecord::Migration
  def change
    create_table :comments do |t|
       t.references :user
       t.text, :content
       t.timestamps
    end
  end
end

the important row for you is

t.references :user

or you can define it directly by

t.integer :user_id
#but this do not add the db index
share|improve this answer

You have to add those to a migration.

You can define if like this in a new migration

add_column :comments, :user_id, :int

or change your migration and use the helper

create_table :comments do |t|
  ...
  t.references :user
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.