method

delete_all_versions

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: SchemaMigration
delete_all_versions() public

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/schema_migration.rb, line 36
    def delete_all_versions
      # Eagerly check in connection to avoid checking in/out many times in the called method.
      @pool.with_connection do
        versions.each do |version|
          delete_version(version)
        end
      end
    end
Register or log in to add new notes.