method

create

rails latest stable - Class: ActiveRecord::Timestamp

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.

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