aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/resource/templates/migration.rb
blob: 2a305a6a9d7b1a47c79336e4b329b791e4e02bd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
class <%= migration_name %> < ActiveRecord::Migration
  def self.up
    create_table :<%= table_name %> do |t|
<% for attribute in attributes -%>
      t.column :<%= attribute.name %>, :<%= attribute.type %>
<% end -%>
    end
  end

  def self.down
    drop_table :<%= table_name %>
  end
end