I have these models on Rails :
class Tweet < ActiveRecord::Base
attr_accessible :status
belongs_to :user
end
class User < ActiveRecord::Base
attr_accessible :name
has_many :tweets
end
but on bd there isn't a relationship between these models. Which migration i need to do for add user_id into tweet table?