method
_create_record
v5.1.7 -
Show latest stable
- Class:
ActiveRecord::Timestamp
_create_record()private
No documentation available.
# File activerecord/lib/active_record/timestamp.rb, line 91
def _create_record
if record_timestamps
current_time = current_time_from_proper_timezone
all_timestamp_attributes_in_model.each do |column|
if !attribute_present?(column)
write_attribute(column, current_time)
end
end
end
super
end