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