vote up 9 vote down star
2

What is the best way to set default value in ActiveRecord?

I see a post from Pratik that describes an ugly, complicated chunk of code: http://m.onkey.org/2007/7/24/how-to-set-default-values-in-your-model

class Item < ActiveRecord::Base  
  def initialize_with_defaults(attrs = nil, &block)
    initialize_without_defaults(attrs) do
      setter = lambda { |key, value| self.send("#{key.to_s}=", value) unless
        !attrs.nil? && attrs.keys.map(&:to_s).include?(key.to_s) }
      setter.call('scheduler_type', 'hotseat')
      yield self if block_given?
    end
  end
  alias_method_chain :initialize, :defaults
end

YUCK!

I have seen the following examples googling around:

  def initialize 
    super
    self.status = ACTIVE unless self.status
  end

and

  def after_initialize 
    return unless new_record?
    self.status = ACTIVE
  end

I've also seen people put it in their migration, but I'd rather see it defined in the model code.

What's the best way to set default value for fields in ActiveRecord model?

flag

75% accept rate
Looks like you answered the question yourself, in two different variants :) – Adam Byrtek Nov 30 '08 at 10:48
Note that the "standard" Ruby idiom for 'self.status = ACTIVE unless self.status' is 'self.status ||= ACTIVE' – Mike Woodhouse Nov 30 '08 at 14:48

4 Answers

vote up 5 vote down check

The Phusion guys have some nice plugin for this.

link|flag
vote up 7 vote down

We put the default values in the database through migrations (by specifying the :default option on each column definition) and let Active Record use these values to set the default for each attribute.

IMHO, this approach is aligned with the principles of AR : convention over configuration, DRY, the table definition drives the model, not the other way around.

Note that the defaults are still in the application (Ruby) code, though not in the model but in the migration(s).

link|flag
vote up -2 vote down
class Item < ActiveRecord::Base
  def status
    self[:status] or ACTIVE
  end
end
link|flag
Mmmhh... seems ingenious at first, but after thinking a bit, I see a few problems. First, all the default values aren't in a single point, but scattered through the class (imagine searching for them or changing them). Second and worst, yo cannot put, later on, a null value (or even a false one!). – paradoja Nov 30 '08 at 14:22
why would you need to set a null value as default? you get that out of the box with AR without doing anything at all. As for false when using a boolean column then you're right, this is not the best approach. – Mike Breen Nov 30 '08 at 14:44
I can't speak for others coding habits I haven't had an issue because I don't scatter my getters/setters around a class file. Also, any modern text editor should make it easy to navigate to a method (shift-cmd-t in textmate). – Mike Breen Nov 30 '08 at 14:48
@paradoja - I take that back, I now see where it breaks down with using null also. Not necessarily using null as the default but if you actually wanted to change the value to null at some point. Good catch @paradoja, thanks. – Mike Breen Nov 30 '08 at 14:59
;) You're welcome. – paradoja Dec 2 '08 at 13:38
vote up -1 vote down

This is what constructors are for! Override the model's initialize method.

Use the after_initialize method.

link|flag
Normally you'd be correct but you should never override initialize in an ActiveRecord model as it might not always be called. You should use the after_initialize method instead. – Luke Redpath Nov 13 at 0:34

Your Answer

Get an OpenID
or

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