rake db:seed.This solution might not be the best, but it's very simple: since
attr_accessible is just a class method, you can use it anywhere. So use it inside your db/seeds.rb, e.g.:Model.attr_accessible :normally_inaccessible_attributeIt won't affect anything else in your app, and it'll make setting up your defaults less of a hassle.












