Method: Sequel::Migration#method_missing

Defined in:
lib/sequel/extensions/migration.rb

#method_missing(method_sym, *args, &block) ⇒ Object

Intercepts method calls intended for the database and sends them along.



67
68
69
70
# File 'lib/sequel/extensions/migration.rb', line 67

def method_missing(method_sym, *args, &block)
  # Allow calling private methods for backwards compatibility
  @db.send(method_sym, *args, &block)
end