Flowdock
method

timestamp_column_names

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: Fixtures
timestamp_column_names() 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/fixtures.rb, line 669
    def timestamp_column_names
      @timestamp_column_names ||= %w(created_at created_on updated_at updated_on).select do |name|
        column_names.include?(name)
      end
    end
Register or log in to add new notes.