Method: ActiveRecord::Migration::CommandRecorder#method_missing
- Defined in:
- activerecord/lib/active_record/migration/command_recorder.rb
#method_missing(method) ⇒ Object (private)
Forwards any missing method call to the target.
400 401 402 403 404 405 406 |
# File 'activerecord/lib/active_record/migration/command_recorder.rb', line 400 def method_missing(method, ...) if delegate.respond_to?(method) delegate.public_send(method, ...) else super end end |