aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/migration/migration_generator.rb
blob: 29d1238072c5263d93c43dc92d03a8431a482203 (plain) (blame)
1
2
3
4
5
6
7
8
module Rails
  module Generators
    class MigrationGenerator < NamedBase #metagenerator
      argument :attributes, :type => :hash, :default => {}, :banner => "field:type field:type"
      hook_for :orm
    end
  end
end