method
create
rails latest stable - Class:
ActiveRecord::Timestamp
create()private
No documentation available.
# File activerecord/lib/active_record/timestamp.rb, line 47
def create #:nodoc:
if self.record_timestamps
current_time = current_time_from_proper_timezone
all_timestamp_attributes.each do |column|
if respond_to?(column) && respond_to?("#{column}=") && self.send(column).nil?
write_attribute(column.to_s, current_time)
end
end
end
super
end