aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/migration/migration_generator.rb
blob: fca2a8fef48d3c7d35a6522d41785f89ba439790 (plain) (blame)
1
2
3
4
5
6
7
8
module Rails
  module Generators
    class MigrationGenerator < NamedBase # :nodoc:
      argument :attributes, type: :array, default: [], banner: "field[:type][:index] field[:type][:index]"
      hook_for :orm, required: true, desc: "ORM to be invoked"
    end
  end
end