Flowdock
method

_create_record

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: ActiveRecord::Timestamp
_create_record() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.