blob: ef923e5926648124ac4c6cfb29776601c3dcee6f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# frozen_string_literal: true
namespace :active_storage do
desc "Copy over the migration needed to the application"
task install: :environment do
Rake::Task["active_storage:install:migrations"].invoke
end
end
|