method

represent_boolean_as_integer=

represent_boolean_as_integer=(value)
public

No documentation available.

# File activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb, line 79
      def self.represent_boolean_as_integer=(value) # :nodoc:
        if value == false
          raise "`.represent_boolean_as_integer=` is now always true, so make sure your application can work with it and remove this settings."
        end

        ActiveSupport::Deprecation.warn(
          "`.represent_boolean_as_integer=` is now always true, so setting this is deprecated and will be removed in Rails 6.1."
        )
      end