Methods
Constants
| Migration | = | Struct.new(:name, :version) do def disable_ddl_transaction; false end def migrate direction # do nothing end end |
Instance Public methods
setup()
Link
test_migration_should_be_run_without_logger()
Link
# File activerecord/test/cases/migration/logger_test.rb, line 26 def test_migration_should_be_run_without_logger previous_logger = ActiveRecord::Base.logger ActiveRecord::Base.logger = nil migrations = [Migration.new('a', 1), Migration.new('b', 2), Migration.new('c', 3)] ActiveRecord::Migrator.new(:up, migrations).migrate ensure ActiveRecord::Base.logger = previous_logger end