W3cubDocs

/Ruby on Rails 7.0

class ActiveRecord::Migration::CheckPending

Parent:
Object

This class is used to verify that all migrations have been run before loading a web page if config.active_record.migration_error is set to :page_load

Public Class Methods

new(app, file_watcher: ActiveSupport::FileUpdateChecker) Show source
# File activerecord/lib/active_record/migration.rb, line 581
def initialize(app, file_watcher: ActiveSupport::FileUpdateChecker)
  @app = app
  @needs_check = true
  @mutex = Mutex.new
  @file_watcher = file_watcher
end

Public Instance Methods

call(env) Show source
# File activerecord/lib/active_record/migration.rb, line 588
def call(env)
  @mutex.synchronize do
    @watcher ||= build_watcher do
      @needs_check = true
      ActiveRecord::Migration.check_pending!(connection)
      @needs_check = false
    end

    if @needs_check
      @watcher.execute
    else
      @watcher.execute_if_updated
    end
  end

  @app.call(env)
end

© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.