aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/migration/migration_generator.rb
blob: 6aefddd3fd61e334b540d8ffa5d696c6b194f599 (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