From a58eaa48dea4e112ce46c9251f915107672ac4ed Mon Sep 17 00:00:00 2001 From: eileencodes Date: Thu, 4 Feb 2021 12:54:38 -0500 Subject: [PATCH] Ensure migration version is 7.0 Now that Rails main is going to be Rails 7.0 instead of 6.2 we need to make sure the migration version matches. Followup to 1b455e2e9d --- activerecord/lib/active_record/migration/compatibility.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/activerecord/lib/active_record/migration/compatibility.rb b/activerecord/lib/active_record/migration/compatibility.rb index d6a1231f61..e153e5dceb 100644 --- a/activerecord/lib/active_record/migration/compatibility.rb +++ b/activerecord/lib/active_record/migration/compatibility.rb @@ -13,9 +13,9 @@ module ActiveRecord const_get(name) end - V6_2 = Current + V7_0 = Current - class V6_1 < V6_2 + class V6_1 < V7_0 end class V6_0 < V6_1