1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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
This commit is contained in:
eileencodes 2021-02-04 12:54:38 -05:00
parent ab5331e089
commit a58eaa48de
No known key found for this signature in database
GPG key ID: BA5C575120BBE8DF

View file

@ -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