aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/commands.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails_generator/commands.rb')
-rw-r--r--railties/lib/rails_generator/commands.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/railties/lib/rails_generator/commands.rb b/railties/lib/rails_generator/commands.rb
index 7ed461e58e..8d0ac52b03 100644
--- a/railties/lib/rails_generator/commands.rb
+++ b/railties/lib/rails_generator/commands.rb
@@ -428,7 +428,11 @@ end_message
migration_directory relative_destination
migration_file_name = template_options[:migration_file_name] || file_name
- raise "There is no migration named #{migration_file_name}" unless migration_exists?(migration_file_name)
+ unless migration_exists?(migration_file_name)
+ puts "There is no migration named #{migration_file_name}"
+ return
+ end
+
existing_migrations(migration_file_name).each do |file_path|
file(relative_source, file_path, template_options)