> amritpal p. wrote in post #995533: > Run it to generate a new migration > Then ran "rake db:migrate", it created a new columns in table products with > name > "price", but it didn't change the view (didn't create a field with name > "price") > > Why?
The clue's in the name - running rake db:migrate alters your database (hence 'db'). It is not responsible for changing the views. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

