Flowdock
method_missing(method, *arguments, &block) 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.rb, line 439
    def method_missing(method, *arguments, &block)
      arg_list = arguments.map{ |a| a.inspect } * ', '

      say_with_time "#{method}(#{arg_list})" do
        unless arguments.empty? || method == :execute
          arguments[0] = Migrator.proper_table_name(arguments.first)
        end
        return super unless connection.respond_to?(method)
        connection.send(method, *arguments, &block)
      end
    end
Register or log in to add new notes.