Adding gem 'activerecord-postgis-adapter' to your Gemfile and configuring database.yml to use the postgis adapter:
default: &default
adapter: postgis
encoding: unicode
....
Will yield a system that is incompatible with database_validations, because the adapter name doesn't match, postgres.
Can you extend your supported adapters to also support postgres with the GIS extension?
Thanks!
Adding
gem 'activerecord-postgis-adapter'to yourGemfileand configuringdatabase.ymlto use thepostgisadapter:Will yield a system that is incompatible with
database_validations, because the adapter name doesn't match,postgres.Can you extend your supported adapters to also support postgres with the GIS extension?
Thanks!