method

field_type

rails latest stable - Class: Rails::Generator::GeneratedAttribute

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

field_type()
public

No documentation available.

# File railties/lib/rails_generator/generated_attribute.rb, line 13
      def field_type
        @field_type ||= case type
          when :integer, :float, :decimal then :text_field
          when :time                      then :time_select
          when :datetime, :timestamp      then :datetime_select
          when :date                      then :date_select
          when :string                    then :text_field
          when :text                      then :text_area
          when :boolean                   then :check_box
          else
            :text_field
        end      
      end