class Arborist::UnknownSchemaMethod

Public Class Methods

new(method_name) click to toggle source
Calls superclass method
# File lib/arborist/exceptions.rb, line 13
def initialize method_name
  super %Q{Unknown schema migration method: #{method_name}.
    Use :up, :down or :change}
end