mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #14048 from pcreux/better-error-message-db-migrate-down
Add hint to error message of task db:migrate:down
This commit is contained in:
commit
cdda29051a
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ db_namespace = namespace :db do
|
|||
# desc 'Runs the "down" for a given migration VERSION.'
|
||||
task :down => [:environment, :load_config] do
|
||||
version = ENV['VERSION'] ? ENV['VERSION'].to_i : nil
|
||||
raise 'VERSION is required' unless version
|
||||
raise 'VERSION is required - To go down one migration, run db:rollback' unless version
|
||||
ActiveRecord::Migrator.run(:down, ActiveRecord::Migrator.migrations_paths, version)
|
||||
db_namespace['_dump'].invoke
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue