aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/model/templates/migration.rb
blob: 023c07d2f690668864e77983b304a1382d53e364 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class <%= migration_name %> < ActiveRecord::Migration
  def self.up
    create_table "<%= table_name %>" do |t|
      # t.column "name", :string
    end
  end

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