class Rails::Generators::GeneratedAttribute

def input_type

def input_type
  @input_type ||= if type == :text
    "textarea"
  else
    "input"
  end
end