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