I have model as following -
class User
include Mongoid::Document
field :name
After saving few user objects to database, I added some more fields as -
class User
include Mongoid::Document
include Mongoid::Timestamps::Created
field :name
field :birthdate
Now when I use
@user = User.all
@user.each do |u|
puts u.name
puts u.birthdate.strftime(#someFormat)
puts u.created_at.strftime(#someFormat)
end
Now, as my old user objects don't have birthdate key in it, this give error as - strftime called on nil class.
Question -
- How to handle such cases with mognoid? In mysql, when column is added, of course it get's added to old rows as well. But if I see in mongodb, it doesn't add new fields as keys for old data.
- This Problem also persists with created_at field as old data don't have that as well.
I am looking for good way to solve this, checking for nil conditions each time is not scalable option as fields will go on increasing.