instance method
attributes_from_column_definition
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v2.3.18 PrivateAvailable in: v2.2.3 v2.3.18
Signature
attributes_from_column_definition()
Initializes the attributes array with keys matching the columns from the linked table and the values matching the corresponding default value of that column, so that a new instance, or one populated from a passed-in Hash, still has all the attributes that instances loaded from the database would.
Source
# File activerecord/lib/active_record/base.rb, line 3074
def attributes_from_column_definition
self.class.columns.inject({}) do |attributes, column|
attributes[column.name] = column.default unless column.name == self.class.primary_key
attributes
end
end
Defined in activerecord/lib/active_record/base.rb line 3074
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Base