Flowdock
method_missing(method, *arguments, &block) private

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.rb, line 168
        def method_missing(method, *arguments, &block)
          arguments[0] = Migrator.proper_table_name(arguments.first) unless arguments.empty?
          ActiveRecord::Base.connection.send(method, *arguments, &block)
        end
Register or log in to add new notes.