method

disable_extension

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: V7_0
disable_extension(name, **options) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/migration/compatibility.rb, line 165
        def disable_extension(name, **options)
          if connection.adapter_name == "PostgreSQL"
            options[:force] = :cascade
          end
          super
        end
Register or log in to add new notes.