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

Create db/migrate if it doesn't exist

This commit is contained in:
George Claghorn 2017-07-06 23:45:51 -04:00
parent b7f925d9b0
commit 07a62e63bd

View file

@ -11,6 +11,7 @@ namespace :activestorage do
puts "Copied default configuration to config/storage_services.yml"
migration_file_path = "db/migrate/#{Time.now.utc.strftime("%Y%m%d%H%M%S")}_active_storage_create_tables.rb"
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}"