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

14 lines
551 B
Ruby
Raw Normal View History

require "fileutils"
namespace :activestorage do
desc "Copy over the migration needed to the application"
task :install do
migration_file_path = "db/migrate/#{Time.now.utc.strftime("%Y%m%d%H%M%S")}_active_storage_create_tables.rb"
2017-07-06 23:45:51 -04:00
FileUtils.mkdir_p Rails.root.join("db/migrate")
FileUtils.cp File.expand_path("../../active_storage/migration.rb", __FILE__), Rails.root.join(migration_file_path)
puts "Copied migration to #{migration_file_path}"
puts "Now run rails db:migrate to create the tables for Active Storage"
end
end