module ActiveRecord::Chemistry::Extendable::Migration::Table

Public Instance Methods

remove_extended_by(*args) click to toggle source
# File lib/activerecord/chemistry/extendable/migration.rb, line 17
def remove_extended_by(*args)
  options = args.extract_options!
  args.each do |col|
    @base.remove_reference(@name, col, options)
  end
end