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

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