method

_create_record

_create_record()
private

No documentation available.

# File activerecord/lib/active_record/timestamp.rb, line 107
    def _create_record
      if record_timestamps
        current_time = current_time_from_proper_timezone

        all_timestamp_attributes_in_model.each do |column|
          _write_attribute(column, current_time) unless _read_attribute(column)
        end
      end

      super
    end