aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/lib/tasks/activestorage.rake
diff options
context:
space:
mode:
authorDino Maric <dino.onex@gmail.com>2017-08-10 20:02:29 +0200
committerRafael França <rafaelmfranca@gmail.com>2017-08-10 14:02:29 -0400
commita3f7407e7c0bdfafda4c574e12a68e9cbbef82c5 (patch)
tree33a99e253661e83a2f3ff30985fffc2e5d95204f /activestorage/lib/tasks/activestorage.rake
parent3ffc77a9fb7902acacc600a897fda3107f2ff303 (diff)
downloadrails-a3f7407e7c0bdfafda4c574e12a68e9cbbef82c5.tar.gz
rails-a3f7407e7c0bdfafda4c574e12a68e9cbbef82c5.tar.bz2
rails-a3f7407e7c0bdfafda4c574e12a68e9cbbef82c5.zip
Isolate ActiveStorage namespaces (#30095)
* Isolate ActiveStorage namespaces * Rename migrations task [Rafael Mendonça França + Dino Maric]
Diffstat (limited to 'activestorage/lib/tasks/activestorage.rake')
-rw-r--r--activestorage/lib/tasks/activestorage.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/lib/tasks/activestorage.rake b/activestorage/lib/tasks/activestorage.rake
index d9e240b141..7a573be596 100644
--- a/activestorage/lib/tasks/activestorage.rake
+++ b/activestorage/lib/tasks/activestorage.rake
@@ -1,6 +1,6 @@
namespace :activestorage do
desc "Copy over the migration needed to the application"
task install: :environment do
- Rake::Task["active_storage_engine:install:migrations"].invoke
+ Rake::Task["active_storage:install:migrations"].invoke
end
end