Flowdock
method

create

Importance_0
v3.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::Timestamp
create(#:nodoc:) 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 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
Register or log in to add new notes.