diff options
author | Dino Maric <dino.onex@gmail.com> | 2017-08-10 20:02:29 +0200 |
---|---|---|
committer | Rafael França <rafaelmfranca@gmail.com> | 2017-08-10 14:02:29 -0400 |
commit | a3f7407e7c0bdfafda4c574e12a68e9cbbef82c5 (patch) | |
tree | 33a99e253661e83a2f3ff30985fffc2e5d95204f /activestorage/lib/tasks | |
parent | 3ffc77a9fb7902acacc600a897fda3107f2ff303 (diff) | |
download | rails-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')
-rw-r--r-- | activestorage/lib/tasks/activestorage.rake | 2 |
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 |