method

create

create()
private

No documentation available.

# File activerecord/lib/active_record/timestamp.rb, line 38
    def create #:nodoc:
      if record_timestamps
        current_time = current_time_from_proper_timezone

        all_timestamp_attributes.each do |column|
          write_attribute(column.to_s, current_time) if respond_to?(column) && self.send(column).nil?
        end
      end

      super
    end