mohamedelfiky/activerecord_globalize

View on GitHub
lib/activerecord_globalize/hstore_checker.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ActiverecordGlobalize
  module HstoreChecker # :nodoc:
    ##
    # Check if database is supporting hstore data type by default
    def self.native_hstore?
      @native_hstore ||= ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::NATIVE_DATABASE_TYPES.key?(:hstore)
    end
  end
end