aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/rails/generators/active_record/migration/templates/migration.rb
blob: d6ab3257a088abf4a5b5c77bb13ccf318652e3d4 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                           
                                                 



                                                                                                                                                


                                                           



                                                                                                                                                                               

     
class <%= migration_class_name %> < ActiveRecord::Migration
  def self.up<% attributes.each do |attribute| %>
    <%- if migration_action -%>
    <%= migration_action %>_column :<%= table_name %>, :<%= attribute.name %><% if migration_action == 'add' %>, :<%= attribute.type %><% end %>
    <%- end -%>
  <%- end -%>
  end

  def self.down<% attributes.reverse.each do |attribute| %>
    <%- if migration_action -%>
    <%= migration_action == 'add' ? 'remove' : 'add' %>_column :<%= table_name %>, :<%= attribute.name %><% if migration_action == 'remove' %>, :<%= attribute.type %><% end %>
    <%- end -%>
  <%- end -%>
  end
end