I am new to ruby on rails. As a part of my learning I created a sample application. In the sample app i have 2 models : tweet, user
I defined the relationship in my model, which defines the following : A Tweet has a User , A User has many Tweets. Here is how my code looks like :
class User < ActiveRecord::Base
attr_accessible :user_email, :user_name, :user_password
has_many :tweet
end
class Tweet < ActiveRecord::Base
attr_accessible :post_title
belongs_to :user
end
Now I want to get this updated in my database. I wanted to check if there is anyway this can be updated automatically e.g. running rake db:migrate or something else. Or if I have do it manually ?
Thanks for all your help.