method

versions

rails latest stable - Class: ActiveRecord::SchemaMigration
versions()
public

No documentation available.

# File activerecord/lib/active_record/schema_migration.rb, line 66
    def versions
      sm = Arel::SelectManager.new(arel_table)
      sm.project(arel_table[primary_key])
      sm.order(arel_table[primary_key].asc)

      connection.select_values(sm, "#{self.class} Load")
    end