Ruby on Rails Monday, January 2, 2012

Hi!


In Rails 3.1 there is only one method for migrations called 'change'.

I want to run some code in a migration only when migrating up, not down. Is that possible?

The issue I have is that this code is inside a migration file from Active Admin:

# Create a default user
AdminUser.create!(:email => 'admin@example.com', :password => 'password', :password_confirmation => 'password')

So, when I try to migrate down this will fail because there is already a user present.

Any ideas?

Regards
Linus

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/9qqE5Z4agXYJ.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment