aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-06-30 16:44:34 +0200
committerYves Senn <yves.senn@gmail.com>2015-06-30 16:44:34 +0200
commitf55c60f5aec67aaa2b1614a59f9a3639f966ea30 (patch)
treecc751b3303958e5307ec6a60eac9f247562aa044 /activerecord
parent2183caa24a678395c4367b1dedee583069fb1797 (diff)
downloadrails-f55c60f5aec67aaa2b1614a59f9a3639f966ea30.tar.gz
rails-f55c60f5aec67aaa2b1614a59f9a3639f966ea30.tar.bz2
rails-f55c60f5aec67aaa2b1614a59f9a3639f966ea30.zip
follow-up to 2183caa, always reenable the task. #20743
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/railties/databases.rake6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/railties/databases.rake b/activerecord/lib/active_record/railties/databases.rake
index 85734aea90..6a72d528b4 100644
--- a/activerecord/lib/active_record/railties/databases.rake
+++ b/activerecord/lib/active_record/railties/databases.rake
@@ -54,10 +54,10 @@ db_namespace = namespace :db do
else
raise "unknown schema format #{ActiveRecord::Base.schema_format}"
end
- # Allow this task to be called as many times as required. An example is the
- # migrate:redo task, which calls other two internally that depend on this one.
- db_namespace['_dump'].reenable
end
+ # Allow this task to be called as many times as required. An example is the
+ # migrate:redo task, which calls other two internally that depend on this one.
+ db_namespace['_dump'].reenable
end
namespace :migrate do