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