1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/tasks/activestorage.rake

13 lines
415 B
Ruby
Raw Normal View History

require "fileutils"
namespace :activestorage do
desc "Copy over the migration needed to the application"
task :migration do
FileUtils.cp \
File.expand_path("../../active_storage/migration.rb", __FILE__),
Rails.root.join("db/migrate/#{Time.now.utc.strftime("%Y%m%d%H%M%S")}_active_storage_create_tables.rb")
puts "Now run rails db:migrate to create the tables for Active Storage"
end
end