instance method
extensions
Ruby on Rails 4.2.9
Since v4.0.13Signature
extensions()
No documentation comment.
Source
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 357
def extensions
if supports_extensions?
exec_query("SELECT extname from pg_extension", "SCHEMA").cast_values
else
super
end
end
Defined in activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb line 357
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::ConnectionAdapters::PostgreSQLAdapter