Flowdock
method

extension_enabled?

Importance_0
extension_enabled?(name) 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/connection_adapters/postgresql_adapter.rb, line 363
      def extension_enabled?(name)
        res = exec_query("SELECT EXISTS(SELECT * FROM pg_available_extensions WHERE name = '#{name}' AND installed_version IS NOT NULL) as enabled", "SCHEMA")
        res.cast_values.first
      end
Register or log in to add new notes.