module ViewModel::MigratableView

def migration_class(from, to)

def migration_class(from, to)
  @migration_classes.fetch([from, to]) do
    raise ViewModel::Migration::NoPathError.new(self, from, to)
  end
end