2017-07-06 07:58:43 -04:00
|
|
|
require "fileutils"
|
|
|
|
|
|
|
|
namespace :activestorage do
|
|
|
|
desc "Copy over the migration needed to the application"
|
2017-07-06 09:02:09 -04:00
|
|
|
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")
|
2017-07-06 09:02:09 -04:00
|
|
|
FileUtils.cp File.expand_path("../../active_storage/migration.rb", __FILE__), Rails.root.join(migration_file_path)
|
|
|
|
puts "Copied migration to #{migration_file_path}"
|
2017-07-06 07:58:43 -04:00
|
|
|
|
|
|
|
puts "Now run rails db:migrate to create the tables for Active Storage"
|
|
|
|
end
|
|
|
|
end
|