To debug this I would: 1) verify schema versions match on dev compared to prod: "select * from schema_migrations;" 2) turn up debug on prod logging: in evironment.rb uncomment this line: "# config.log_level = :debug" and tail -f log/* when running migrations. see if it is even doing what you think it is doing. 3) I've found in Rails 2 this statement causes issues when I migrate on non-development environments. And I sometimes comment it before I do migrations: environments/production.rb : "config.cache_classes = true"
I hope this helps. H --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

