mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #5532 from mhfs/migration_blank_line
Remove blank line from generated migration
This commit is contained in:
commit
14b2cf6a0a
2 changed files with 2 additions and 1 deletions
|
@ -5,7 +5,7 @@ class <%= migration_class_name %> < ActiveRecord::Migration
|
|||
add_column :<%= table_name %>, :<%= attribute.name %>, :<%= attribute.type %><%= attribute.inject_options %>
|
||||
<%- if attribute.has_index? -%>
|
||||
add_index :<%= table_name %>, :<%= attribute.index_name %><%= attribute.inject_index_options %>
|
||||
<%- end %>
|
||||
<%- end -%>
|
||||
<%- end -%>
|
||||
end
|
||||
<%- else -%>
|
||||
|
|
|
@ -37,6 +37,7 @@ class MigrationGeneratorTest < Rails::Generators::TestCase
|
|||
assert_method :change, content do |up|
|
||||
assert_match(/add_column :posts, :title, :string/, up)
|
||||
assert_match(/add_column :posts, :body, :text/, up)
|
||||
assert_no_match(/\n\n/, up)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue