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.

link|improve this question

65% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You could also add a default to your new field, which would give all your old records a fallback value.

class User
  include Mongoid::Document
  include Mongoid::Timestamps::Created

  field :name
  field :birthdate, :type => Date, :default => Date.new(1970,1,1)
end

You can update your models which are missing created_at values, but just running something simple in your rails console:

User.all.each{ |u| u.update_attributes(:created_at => Time.now) if u.created_at.nil? }
link|improve this answer
thanks theTRON, but how can i give default for created_at field? Or rake should be option for it? – rtdp Jun 23 '11 at 6:41
Yeah - a simple script to create the missing data is probably best, i've updated my answer with an example. – theTRON Jun 23 '11 at 12:13
feedback

1) You can check for nil value for those fields:

@user = User.all
@user.each do |u|
   puts u.name
   puts u.birthdate.strftime(#someFormat) if u.birthdate
   puts u.created_at.strftime(#someFormat) if u.created_at
end

2) You can update all your old models with actual not nil values for those fields. You can do it with mondodb update (read more here) or by writing ruby script like this:

User.all.select{|u| u.birthdate.nil? || u.created_at.nil?}.each do |u|
  u.update_attributes(:birthdate => Date.today, :created_at => Time.now)
end

birthdate and created_at attributes are filled with sample values.

link|improve this answer
any guidelines over writing ruby script with second method ? – rtdp Jun 22 '11 at 14:25
@rtdp, I`ve updated answer with sample script. – Hck Jun 22 '11 at 14:32
Thanks @Hck for this. – rtdp Jun 22 '11 at 17:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.