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:
parent
ab5331e089
commit
a58eaa48de
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue