I'm trying to find the "best" way to set default values for objects in rails. Best I can think of is to set the default value in the "new" method in the controller. Anyone have any input on if this is acceptable or if there's a better way to do it?

link|improve this question

70% accept rate
1  
What are these objects; how are they consumed / used ? Are they used while rendering the views or for controller logic ? – Gishu Jul 27 '09 at 4:19
1  
If you are talking about an ActiveRecord object I have to tell you that there's no sane solution to the 'default values' problem. Only insane hacks, and the rails authors don't seem to think that the feature is worth it (amazing as only the rails community is..) – Mauricio Nov 19 '10 at 18:39
feedback

8 Answers

"Correct" is a dangerous word in Ruby. There's usually more than one way to do anything. If you know you'll always want that default value for that column on that table, setting them in a DB migration file is the easiest way:

class SetDefault < ActiveRecord::Migration
  def self.up
    change_column :people, :last_name, :default => "Smith"
  end

  def self.down
    # You can't currently remove default values in Rails
    raise ActiveRecord::IrreversibleMigration, "Can't remove the default"
  end
end

Because ActiveRecord autodiscovers your table and column properties, this will cause the same default to be set in any model using it in any standard Rails app.

However, if you only want default values set in specific cases -- say, it's an inherited model that shares a table with some others -- then another elegant way is do it directly in your Rails code when the model object is created:

class GenericWhitePerson < Person
  def initialize(attributes=nil)
    attr_with_defaults = {:last_name => "Smith"}.merge(attributes)
    super(attr_with_defaults)
  end
end

Then, when you do a GenericWhitePerson.new(), it'll always trickle the "Smith" attribute up to Person.new() unless you override it with something else.

link|improve this answer
Second option is actually not gonna work: 3hv.co.uk/blog/2009/06/03/… But thanks for the migration snippet! – Nikita Rybak Jun 18 '10 at 22:50
Try it. It'll work on new model objects called with the .new class method. That blog post's discussion about ActiveRecord directly calling .allocate was about model objects loaded with existing data from the database. (And it's a terrible idea for ActiveRecord to work that way, IMO. But that's beside the point.) – SFEley Mar 10 '11 at 7:55
@SFEley OP didn't say anything about new method, so it's perfectly reasonable to mention this quirk here. – Nikita Rybak Mar 10 '11 at 8:46
He did mention 'the "new" method in the controller.' What's the likelihood that you're going to load existing records from controller#new -- and if you do, why would you be worried about setting default values on those records? – SFEley Mar 18 '11 at 16:34
@SFEley Are you implying that people using Rails do not need defaults? And what controller#new has got to do with it? – Nikita Rybak Mar 18 '11 at 23:55
show 2 more comments
feedback

First of all you can't overload initialize(*args) as it's not called in all cases.

Your best option is to put your defaults into your migration.

add_column :accounts, :max_users, :integer, :default => 10

Second best is to place defaults into your model but this will only work with attributes that are initially nil. You may have trouble as I did with boolean columns.

def after_initialize
  if new_record?
    max_users ||= 10
  end
end

You need the new_record? so the defaults don't override values loaded from the datbase.

You need ||= to stop rails overriding parameters passed into the initialize method.

link|improve this answer
1  
minor note -- you want to do two things:.... 1) don't call your method after_initialize. You want after_initiation :your_method_name.... 2 use self.max_users ||= 10 – Jesse Wolgamott Feb 3 at 21:43
1  
For booleans, just do this: prop = true if prop.nil? – Francis Potter Mar 18 at 18:26
feedback

If you are referring to ActiveRecord objects, you have (more than) two ways of doing this:

1. Use a :default parameter in the DB

E.G.

class AddSsl < ActiveRecord::Migration
  def self.up
    add_column :accounts, :ssl_enabled, :boolean, :default => 1
  end

  def self.down
    remove_column :accounts, :ssl_enabled
  end
end

More info here: http://api.rubyonrails.org/classes/ActiveRecord/Migration.html

2. Use a callback

E.G. before_validation_on_create

More info here: http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html#M002147

link|improve this answer
Isn't the problem with using defaults in the database that they don't get set til the object is saved? If I want to construct a new object with the defaults populated, I need to set them in the initializer. – Rafe Jul 27 '09 at 6:00
+1 for callbacks. – sholsinger Sep 5 '11 at 18:39
feedback

If you are just setting defaults for certain attributes of a database backed model I'd consider using sql default column values - can you clarify what types of defaults you are using?

There are a number of approaches to handle it, this plugin looks like an interesting option.

link|improve this answer
1  
I think you shouldn't depend on database to deal with defaults and constraints, all that stuff should be sorted out in model layer. That plugin works only for ActiveRecord models, it's not generic way to set defaults for objects. – Lukas Stejskal Jul 27 '09 at 9:51
I'd argue that it depends on the types of defaults you are trying to use, it'd not something I've needed to do very often but I'd say constraints are in fact much better off being set in both the database and the model - to prevent your data from becoming invalid in the database. – paulthenerd Jul 27 '09 at 13:47
feedback

The suggestion to override new/initialize is probably incomplete. Rails will (frequently) call allocate for ActiveRecord objects, and calls to allocate won't result in calls to initialize.

If you're talking about ActiveRecord objects, take a look at overriding after_initialize.

These blog posts (not mine) are useful:

Default values Default constructors not called

[Edit: SFEley points out that Rails actually does look at the default in the database when it instantiates a new object in memory - I hadn't realized that.]

link|improve this answer
feedback

Based on SFEley's answer, here is an updated/fixed one for newer Rails versions:

class SetDefault < ActiveRecord::Migration
  def change
    change_column :column, :field, :type, default: "Your value"
  end
end
link|improve this answer
feedback

i answered a similar question here.. a clean way to do this is using Rails attr_accessor_with_default

class SOF
  attr_accessor_with_default :is_awesome,true
end

sof = SOF.new
sof.is_awesome

=> true

UPDATE

attr_accessor_with_default has been deprecated in Rails 3.2.. you could do this instead with pure Ruby

class SOF
  attr_writer :is_awesome

  def is_awesome
    @is_awesome || true
  end
end

sof = SOF.new
sof.is_awesome

#=> true
link|improve this answer
attr_accessor_with_default is deprecated as of rails > 3.1.0 – flynfish May 11 at 22:46
ye i know.. editing... – Orlando Del Aguila May 11 at 22:59
feedback

You can override the constructor for the ActiveRecord model.

Like this:

def initialize(*args)
  super(*args)
  self.attribute_that_needs_default_value ||= default_value
  self.attribute_that_needs_another_default_value ||= another_default_value
  #ad nauseum
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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