diff options
author | George Claghorn <george@basecamp.com> | 2017-07-06 23:45:51 -0400 |
---|---|---|
committer | George Claghorn <george@basecamp.com> | 2017-07-06 23:46:08 -0400 |
commit | 07a62e63bd4effb819fd641155578b07eb5557ed (patch) | |
tree | 78480c6a6d20957b3798a3f757bae35345efd671 /lib/tasks | |
parent | b7f925d9b06104ee935ad754550c340a2a63c6b2 (diff) | |
download | rails-07a62e63bd4effb819fd641155578b07eb5557ed.tar.gz rails-07a62e63bd4effb819fd641155578b07eb5557ed.tar.bz2 rails-07a62e63bd4effb819fd641155578b07eb5557ed.zip |
Create db/migrate if it doesn't exist
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/activestorage.rake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/tasks/activestorage.rake b/lib/tasks/activestorage.rake index 09aefef0d8..17dab0854a 100644 --- a/lib/tasks/activestorage.rake +++ b/lib/tasks/activestorage.rake @@ -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}" |