rom-rb/rom-migrator

View on GitHub
lib/rom/migrator/template.txt

Summary

Maintainability
Test Coverage
# encoding: utf-8
ROM::Migrator.migration
  # Applies the migration
  #
  # @return [undefined]
  #
  up do
  end

  # Reverses the migration
  #
  # @return [undefined]
  #
  down do
  end
end