aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/scaffold/templates/migration.rb
blob: cb1ddd399e71033bc63aaa1f4085a05a3b546818 (plain) (tree)
1
2
3
4
5
6


                                                     
                                  
                                                    
          






                                 
class <%= migration_name %> < ActiveRecord::Migration
  def self.up
    create_table :<%= table_name %> do |t|
<% for attribute in attributes -%>
      t.<%= attribute.type %> :<%= attribute.name %>
<% end -%>
    end
  end

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