diff options
author | bogdanvlviv <bogdanvlviv@gmail.com> | 2017-02-25 17:49:32 +0200 |
---|---|---|
committer | bogdanvlviv <bogdanvlviv@gmail.com> | 2017-04-19 21:32:26 +0300 |
commit | b77d2aa0c336492ba33cbfade4964ba0eda3ef84 (patch) | |
tree | dcd6c9d3248d462b4d28a55115c3b0a35edb34e9 /activerecord | |
parent | c324f5d8bbd717b308776bf47a5fed83ce691e66 (diff) | |
download | rails-b77d2aa0c336492ba33cbfade4964ba0eda3ef84.tar.gz rails-b77d2aa0c336492ba33cbfade4964ba0eda3ef84.tar.bz2 rails-b77d2aa0c336492ba33cbfade4964ba0eda3ef84.zip |
Fix `bin/rails db:forward` first migration
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 4 | ||||
-rw-r--r-- | activerecord/lib/active_record/migration.rb | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index f74425b281..d8f93280cd 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,7 @@ +* Fix `bin/rails db:forward` first migration. + + *bogdanvlviv* + * Support Descending Indexes for MySQL. MySQL 8.0.1 and higher supports descending indexes: `DESC` in an index definition is no longer ignored. diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb index 4e1df1432c..43b6a746e0 100644 --- a/activerecord/lib/active_record/migration.rb +++ b/activerecord/lib/active_record/migration.rb @@ -1104,7 +1104,13 @@ module ActiveRecord def move(direction, migrations_paths, steps) migrator = new(direction, migrations(migrations_paths)) - start_index = migrator.migrations.index(migrator.current_migration) + + start_index = + if current_version == 0 + 0 + else + migrator.migrations.index(migrator.current_migration) + end if start_index finish = migrator.migrations[start_index + steps] |