blob: ea3d69d7c96cd72940fb9d18a20ed5b45ff75703 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
module Rails
module Generators
class ModelGenerator < NamedBase # :nodoc:
argument :attributes, type: :array, default: [], banner: "field[:type][:index] field[:type][:index]"
hook_for :orm, required: true
end
end
end
|