aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/migration/templates/migration.rb
blob: 2600610fc6ef109e8c90ec61e15737cedf8b350d (plain) (blame)
1
2
3
4
5
6
7
class <%= class_name.underscore.camelize %> < ActiveRecord::Migration
  def self.up
  end

  def self.down
  end
end