aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/migration/migration_generator.rb
blob: 95652139f95d67a6ffc5faa94d4bc8555c871409 (plain) (blame)
1
2
3
4
5
6
7
8
class MigrationGenerator < Rails::Generator::NamedBase
  def manifest
    record do |m|
      m.directory 'db/migrate'
      m.migration_template 'migration.rb', 'db/migrate'
    end
  end
end