aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/model/templates/migration.rb
blob: a834c6bf9862cac5d5bdebd7db64fca93799e1af (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