On Monday, August 20, 2012 12:21:44 PM UTC+1, Yongning Liang wrote:
Hey guys, > rails generate migration AddOriginCreatorToTags
in my terminal and got
invoke active_record
create db/migrate/20120820095010_add_original_creator_to_tags.rb
but I can't find
add_column :tags, :origin_creator, :string
in 20120820095010_add_original_creator_to_tags.rb
It doesn't infer the columns to add from the migration name - you have to specify those . In your case that would be
rails generate migration AddOriginCreatorToTags origin_creator:string
Fred