class ActiveRecord::ConnectionAdapters::OvirtPostgreSQLAdapter

Constants

ADAPTER_NAME

Public Instance Methods

check_version() click to toggle source
# File lib/active_record/connection_adapters/ovirt_postgresql_adapter.rb, line 22
def check_version
  msg = "The version of PostgreSQL (#{postgresql_version}) is too old (9.2+ required)"
  if postgresql_version < 90200
    raise msg
  end
end