module Apartment::Migrator

def run(direction, database, version)

Migrate up/down to a specific version
def run(direction, database, version)
  Tenant.process(database) do
    ActiveRecord::Migrator.run(direction, ActiveRecord::Migrator.migrations_paths, version)
  end
end