Method not available on this version
This method is only available on newer versions.
The first available version (v7.2.3) is shown here.
run_without_lock()
private
Used for running a specific migration.
# File activerecord/lib/active_record/migration.rb, line 1497
def run_without_lock
migration = migrations.detect { |m| m.version == @target_version }
raise UnknownMigrationVersionError.new(@target_version) if migration.nil?
record_environment
execute_migration_in_transaction(migration)
end