method
_create_record
v4.2.7 -
Show latest stable
- Class:
ActiveRecord::Timestamp
_create_record()private
No documentation available.
# File activerecord/lib/active_record/timestamp.rb, line 45
def _create_record
if self.record_timestamps
current_time = current_time_from_proper_timezone
all_timestamp_attributes.each do |column|
column = column.to_s
if has_attribute?(column) && !attribute_present?(column)
write_attribute(column, current_time)
end
end
end
super
end