1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #31811 from yahonda/supports_foreign_tables_in_abstract_adapter

Define `supports_foreign_tables?` in AbstractAdapter
This commit is contained in:
Ryuta Kamizono 2018-01-29 06:11:15 +09:00 committed by GitHub
commit 970b5e150c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -326,6 +326,11 @@ module ActiveRecord
false
end
# Does this adapter support foreign/external tables?
def supports_foreign_tables?
false
end
# This is meant to be implemented by the adapters that support extensions
def disable_extension(name)
end