instance method
extensions
Ruby on Rails 5.0.7.2
Since v4.0.13Signature
extensions()
No documentation comment.
Source
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 352
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 352
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::ConnectionAdapters::PostgreSQLAdapter