check_version()
public

No documentation available.

# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 664
      def check_version # :nodoc:
        if database_version < 9_03_00 # < 9.3
          raise "Your version of PostgreSQL (#{database_version}) is too old. Active Record supports PostgreSQL >= 9.3."
        end
      end