instiki/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb

12 lines
546 B
Ruby
Raw Normal View History

class <%= class_name.underscore.camelize %> < ActiveRecord::Migration
def self.up<% attributes.each do |attribute| %>
<%= migration_action %>_column :<%= table_name %>, :<%= attribute.name %><% if migration_action == 'add' %>, :<%= attribute.type %><% end -%>
<%- end %>
2007-01-22 14:43:50 +01:00
end
def self.down<% attributes.reverse.each do |attribute| %>
<%= migration_action == 'add' ? 'remove' : 'add' %>_column :<%= table_name %>, :<%= attribute.name %><% if migration_action == 'remove' %>, :<%= attribute.type %><% end -%>
<%- end %>
2007-01-22 14:43:50 +01:00
end
end