debian-mirror-gitlab/config/initializers/ar_speed_up_migration_checking.rb

19 lines
468 B
Ruby
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
2016-11-03 12:29:30 +05:30
if Rails.env.test?
require 'active_record/migration'
module ActiveRecord
2019-09-30 21:07:59 +05:30
class MigrationContext
alias_method :migrations_unmemoized, :migrations
2016-11-03 12:29:30 +05:30
2019-09-30 21:07:59 +05:30
# This method is called a large number of times per rspec example, and
# it reads + parses `db/migrate/*` each time. Memoizing it can save 0.5
# seconds per spec.
def migrations
@migrations ||= migrations_unmemoized
2016-11-03 12:29:30 +05:30
end
end
end
end