aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/migration/migration_generator.rb
blob: c331c135e3b249e210f460d821092b2303f7b823 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

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