aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/migration/templates/migration.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-07-01 22:19:54 +0200
committerJosé Valim <jose.valim@gmail.com>2009-07-02 10:27:40 +0200
commitea0b0c820de64fa3d67890071af8120dc503dcb7 (patch)
treef0b58ba1befcc866eec03fa92cc89576f8c84368 /railties/lib/rails_generator/generators/components/migration/templates/migration.rb
parentc972b25df56e12a995774aa0291b2d8c2f3eabb5 (diff)
downloadrails-ea0b0c820de64fa3d67890071af8120dc503dcb7.tar.gz
rails-ea0b0c820de64fa3d67890071af8120dc503dcb7.tar.bz2
rails-ea0b0c820de64fa3d67890071af8120dc503dcb7.zip
rm -rf rails_generator/generators
Diffstat (limited to 'railties/lib/rails_generator/generators/components/migration/templates/migration.rb')
-rw-r--r--railties/lib/rails_generator/generators/components/migration/templates/migration.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/railties/lib/rails_generator/generators/components/migration/templates/migration.rb b/railties/lib/rails_generator/generators/components/migration/templates/migration.rb
deleted file mode 100644
index ca35a43229..0000000000
--- a/railties/lib/rails_generator/generators/components/migration/templates/migration.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-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 %>
- 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 %>
- end
-end