method
field_type
v8.1.1 -
Show latest stable
- Class:
Rails::Generators::GeneratedAttribute
field_type()public
No documentation available.
# File railties/lib/rails/generators/generated_attribute.rb, line 122
def field_type
@field_type ||= case type
when :integer then :number_field
when :float, :decimal then :text_field
when :time then :time_field
when :datetime, :timestamp then :datetime_field
when :date then :date_field
when :text then :textarea
when :rich_text then :rich_textarea
when :boolean then :checkbox
when :attachment, :attachments then :file_field
else
:text_field
end
end